|
5 | 5 |
|
6 | 6 | import os |
7 | 7 |
|
8 | | -import contentstack |
9 | | - |
10 | 8 | try: |
11 | 9 | from setuptools import setup |
12 | 10 | except ImportError: |
|
15 | 13 | with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme: |
16 | 14 | long_description = readme.read() |
17 | 15 |
|
| 16 | +requirements = [ |
| 17 | + 'requests>=2.20.0,<3.0', |
| 18 | + 'python-dateutil' |
| 19 | +] |
| 20 | + |
18 | 21 | setup( |
19 | 22 | title="contentstack-python", |
20 | 23 | name="Contentstack", |
21 | 24 | status="Active", |
22 | 25 | type="process", |
23 | 26 | created="09 Jun 2020", |
24 | | - keywords=contentstack.__title__, |
25 | | - version=contentstack.__version__, |
| 27 | + keywords="contentstack-python", |
| 28 | + version="1.3.0", |
26 | 29 | author="Contentstack", |
27 | 30 | author_email="shailesh.mishra@contentstack.com", |
28 | 31 | description="Contentstack is a headless CMS with an API-first approach.", |
|
32 | 35 | packages=['contentstack'], |
33 | 36 | license='MIT', |
34 | 37 | test_suite='tests', |
35 | | - install_requires=['requests>=1.1.0'], |
| 38 | + install_requires=requirements, |
36 | 39 | include_package_data=True, |
| 40 | + universal=1, |
37 | 41 | classifiers=[ |
38 | 42 | "License :: OSI Approved :: MIT License", |
39 | 43 | "Operating System :: OS Independent", |
40 | 44 | 'Intended Audience :: Developers', |
41 | 45 | 'Natural Language :: English', |
42 | 46 | 'Programming Language :: Python :: 3.6', |
43 | 47 | 'Programming Language :: Python :: 3.7', |
| 48 | + 'Programming Language :: Python :: 3.8', |
| 49 | + 'Programming Language :: Python :: 3.9', |
44 | 50 | ], |
45 | 51 | python_requires='>=3.6', |
46 | 52 | zip_safe=False, |
|
0 commit comments