|
4 | 4 | from setuptools import setup, find_packages |
5 | 5 |
|
6 | 6 | with open('README.rst') as f: |
7 | | - long_description = f.read() |
| 7 | + long_description = f.read() |
8 | 8 |
|
9 | 9 | setup( |
10 | | - name='cloudflare', |
11 | | - version='1.0.3', |
12 | | - description='Python wrapper for the CloudFlare v4 API', |
13 | | - long_description=long_description, |
14 | | - author='Martin J. Levy', |
15 | | - author_email='martin@cloudflare.com', |
16 | | - maintainer='Martin J. Levy', |
17 | | - maintainer_email='mahtin@mahtin.com', |
18 | | - url='https://github.com/cloudflare/python-cloudflare', |
19 | | - license='MIT', |
20 | | - packages=['cli4']+find_packages(), |
21 | | - install_requires=['requests'], |
22 | | - keywords='cloudflare', |
23 | | - entry_points={ |
24 | | - 'console_scripts': [ |
25 | | - 'cli4 = cli4.__main__:main' |
| 10 | + name='cloudflare', |
| 11 | + version='1.0.3', |
| 12 | + description='Python wrapper for the CloudFlare v4 API', |
| 13 | + long_description=long_description, |
| 14 | + author='Martin J. Levy', |
| 15 | + author_email='martin@cloudflare.com', |
| 16 | + maintainer='Martin J. Levy', |
| 17 | + maintainer_email='mahtin@mahtin.com', |
| 18 | + url='https://github.com/cloudflare/python-cloudflare', |
| 19 | + license='MIT', |
| 20 | + packages=['cli4']+find_packages(), |
| 21 | + install_requires=['requests'], |
| 22 | + keywords='cloudflare', |
| 23 | + entry_points={ |
| 24 | + 'console_scripts': [ |
| 25 | + 'cli4 = cli4.__main__:main' |
| 26 | + ] |
| 27 | + }, |
| 28 | + classifiers=[ |
| 29 | + 'Development Status :: 5 - Production/Stable', |
| 30 | + 'Intended Audience :: Developers', |
| 31 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
| 32 | + 'License :: OSI Approved :: MIT License', |
| 33 | + 'Programming Language :: Python :: 2', |
| 34 | + 'Programming Language :: Python :: 2.6', |
| 35 | + 'Programming Language :: Python :: 2.7', |
26 | 36 | ] |
27 | | - }, |
28 | | - classifiers=[ |
29 | | - 'Development Status :: 5 - Production/Stable', |
30 | | - 'Intended Audience :: Developers', |
31 | | - 'Topic :: Software Development :: Libraries :: Python Modules', |
32 | | - 'License :: OSI Approved :: MIT License', |
33 | | - 'Programming Language :: Python :: 2', |
34 | | - 'Programming Language :: Python :: 2.6', |
35 | | - 'Programming Language :: Python :: 2.7', |
36 | | - ] |
37 | 37 | ) |
38 | 38 |
|
39 | 39 | package_dir = {'CloudFlare': 'lib'} |
0 commit comments