@@ -32,21 +32,27 @@ def read(fname):
3232setuptools .setup (
3333
3434 name = 'contentstack' ,
35+
3536 version = get_version (),
3637 py_modules = ['contentstack' ],
3738 scripts = ['dokr' ],
38- # packages=find_packages(exclude=['tests']),
39+
3940 url = 'https://github.com/contentstack/contentstack-python.git' ,
41+
4042 license = 'MIT License' ,
4143 author = 'Shailesh Mishra' ,
4244 author_email = 'mshaileshr@gmail.com' ,
43- description = 'Create python-based applications and use the python SDK to fetch and deliver content from '
45+
46+ description = 'Create python-based applications and use the python '
47+ 'SDK to fetch and deliver content from '
4448 'Contentstack. The SDK uses Content Delivery APIs. ' ,
49+
4550 install_requires = ['requests' , 'asset' ],
4651 tests_require = ['pytest' ],
4752 long_description = read ('README.md' ),
48- include_package_data = True ,
4953
54+ include_package_data = True ,
55+ test_suite = 'tests' ,
5056 classifiers = [
5157 "License :: OSI Approved :: MIT License" ,
5258 "Operating System :: OS Independent" ,
@@ -55,6 +61,4 @@ def read(fname):
5561 'Programming Language :: Python :: 3.6' ,
5662 'Programming Language :: Python :: 3.7' ,
5763 ],
58- test_suite = 'tests' ,
59-
6064)
0 commit comments