-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 loc) · 1.11 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
import codecs
import os
from setuptools import find_packages, setup
__version__ = None
exec(open("pystitch/version.py").read())
here = os.path.abspath(os.path.dirname(__file__))
long_description = ""
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as readme:
long_description = readme.read()
setup(
name="pystitchconnect",
version=__version__,
description="Python SDK for Stitch Connect API.",
keywords="stitch",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/dwallace0723/pystitch",
author="David Wallace",
author_email="dwallace0723@gmail.com",
packages=find_packages(),
install_requires=[
'requests>=2.22.0',
'pytz==2019.2'
],
python_requires=">=3.6",
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
)