-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 675 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (24 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# coding=utf-8
import os
import re
from setuptools import find_packages
from setuptools import setup
import kraken
with open('README.rst') as readme:
long_description = readme.read()
setup(
name = "python-kraken",
version = kraken.__version__,
description = kraken.__descr__,
long_description = long_description,
author = kraken.__author__,
author_email = kraken.__author_mail__,
license = "MIT License",
url = kraken.__url__,
keywords = kraken.__keywords__,
classifiers = kraken.__classifiers__,
packages = find_packages(),
include_package_data = True,
install_requires=['requests>=2.7.0'],
zip_safe = False
)