|
4 | 4 |
|
5 | 5 | long_description = get_long_description() |
6 | 6 |
|
7 | | -version = '0.2.6' |
| 7 | +version = "0.2.6" |
8 | 8 | setup( |
9 | 9 | name="kwikapi-django", |
10 | 10 | version=version, |
11 | | - packages=['kwikapi.django'], |
| 11 | + packages=["kwikapi.django"], |
12 | 12 | include_package_data=True, |
13 | | - license='MIT License', # example license |
14 | | - description='Quickest way to build powerful HTTP APIs in Python', |
| 13 | + license="MIT License", # example license |
| 14 | + description="Quickest way to build powerful HTTP APIs in Python", |
15 | 15 | long_description=long_description, |
16 | | - url='https://github.com/deep-compute/kwikapi.django', |
| 16 | + url="https://github.com/deep-compute/kwikapi.django", |
17 | 17 | download_url="https://github.com/deep-compute/kwikapi.django/tarball/%s" % version, |
18 | | - author='Deep Compute, LLC', |
19 | | - author_email='contact@deepcompute.com', |
20 | | - install_requires=[ |
21 | | - 'django==1.11.22', |
22 | | - ], |
| 18 | + author="Deep Compute, LLC", |
| 19 | + author_email="contact@deepcompute.com", |
| 20 | + install_requires=["django==1.11.22"], |
23 | 21 | classifiers=[ |
24 | | - 'Environment :: Web Environment', |
25 | | - 'Intended Audience :: Developers', |
26 | | - 'License :: OSI Approved :: MIT License', |
27 | | - 'Operating System :: OS Independent', |
28 | | - 'Programming Language :: Python', |
29 | | - 'Programming Language :: Python :: 3', |
30 | | - 'Programming Language :: Python :: 3.5', |
31 | | - 'Topic :: Internet :: WWW/HTTP', |
32 | | - 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', |
| 22 | + "Environment :: Web Environment", |
| 23 | + "Intended Audience :: Developers", |
| 24 | + "License :: OSI Approved :: MIT License", |
| 25 | + "Operating System :: OS Independent", |
| 26 | + "Programming Language :: Python", |
| 27 | + "Programming Language :: Python :: 3", |
| 28 | + "Programming Language :: Python :: 3.5", |
| 29 | + "Topic :: Internet :: WWW/HTTP", |
| 30 | + "Topic :: Internet :: WWW/HTTP :: Dynamic Content", |
33 | 31 | ], |
34 | 32 | ) |
0 commit comments