forked from predicthq/sdk-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (52 loc) · 1.88 KB
/
setup.py
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python
import os
import codecs
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
filename = os.path.join(os.path.dirname(__file__), *parts)
with codecs.open(filename, encoding="utf-8") as fp:
return fp.read()
about = {}
# Load version number dynamically
with open(os.path.join(here, 'predicthq', 'version.py'), 'r') as f:
exec(f.read(), about)
REPO_URL = "https://github.com/predicthq/sdk-py"
PYPI_README_NOTE = "For the latest source, discussions, bug reports, etc., please visit the [GitHub repository]({})".format(REPO_URL)
LONG_DESCRIPTION = "\n\n".join([PYPI_README_NOTE, read("README.md")])
setup(
name="predicthq",
version=about['__version__'],
description="PredictHQ Event Intelligence",
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
license="MIT",
author="PredictHQ",
author_email="[email protected]",
url=REPO_URL,
packages=find_packages(exclude=("tests*",)),
setup_requires=[
'pytest-runner>=5.1,<6.0',
],
install_requires=[
"requests>=2.7.0",
"schematics==2.0.0.dev2",
"python-dateutil>=2.4.2",
"pytz==2017.2",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)