|
11 | 11 | if PYTHON36:
|
12 | 12 | install_requires.append('dataclasses')
|
13 | 13 |
|
14 |
| -setup(name='python-mope', |
15 |
| - version=__version__, |
16 |
| - description='A client library for interacting with Mopé Web Shop APIs', |
17 |
| - long_description=long_description, |
18 |
| - long_description_content_type='text/markdown', |
19 |
| - author='Lemuel Boyce', |
20 |
| - |
21 |
| - packages=find_packages(exclude=["tests"]), |
22 |
| - url='https://github.com/rhymiz/python-mope', |
23 |
| - include_package_data=True, |
24 |
| - zip_safe=True, |
25 |
| - license='MIT', |
26 |
| - python_requires='>=3.6,<=3.9', |
27 |
| - install_requires=install_requires, |
28 |
| - classifiers=[ |
29 |
| - "Programming Language :: Python :: 3", |
30 |
| - "Programming Language :: Python :: 3.6", |
31 |
| - "Programming Language :: Python :: 3.7", |
32 |
| - "Programming Language :: Python :: 3.8", |
33 |
| - "Programming Language :: Python :: 3.9", |
34 |
| - "License :: OSI Approved :: MIT License", |
35 |
| - "Operating System :: OS Independent", |
36 |
| - ]) |
| 14 | +setup( |
| 15 | + name='python-mope', |
| 16 | + version=__version__, |
| 17 | + description='A client library for interacting with the Mopé Web Shop API', |
| 18 | + long_description=long_description, |
| 19 | + long_description_content_type='text/markdown', |
| 20 | + author='Lemuel Boyce', |
| 21 | + |
| 22 | + packages=find_packages(exclude=["tests"]), |
| 23 | + url='https://github.com/rhymiz/python-mope', |
| 24 | + include_package_data=True, |
| 25 | + zip_safe=True, |
| 26 | + license='MIT', |
| 27 | + python_requires='>=3.6,<=3.10', |
| 28 | + install_requires=install_requires, |
| 29 | + classifiers=[ |
| 30 | + "Programming Language :: Python :: 3", |
| 31 | + "Programming Language :: Python :: 3.6", |
| 32 | + "Programming Language :: Python :: 3.7", |
| 33 | + "Programming Language :: Python :: 3.8", |
| 34 | + "Programming Language :: Python :: 3.9", |
| 35 | + "Programming Language :: Python :: 3.10", |
| 36 | + "License :: OSI Approved :: MIT License", |
| 37 | + "Operating System :: OS Independent", |
| 38 | + ], |
| 39 | +) |
0 commit comments