|
3 | 3 | import os |
4 | 4 | from setuptools import setup, find_packages |
5 | 5 |
|
6 | | -with open('requirements.txt') as f: |
7 | | - required = f.read().splitlines() |
| 6 | +with open('README.rst') as f: |
| 7 | + long_description = f.read() |
8 | 8 |
|
9 | 9 | setup( |
10 | | - name='python-cloudflare-v4', |
11 | | - version='1.1', |
| 10 | + name='python-cloudflare-test', |
| 11 | + version='1.1.9', |
12 | 12 | description='Python wrapper for the CloudFlare v4 API', |
13 | | - author='gnowxilef,Martin J. Levy', |
14 | | - author_email='felix@fawong.com,martin@cloudflare.com', |
| 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', |
15 | 18 | url='https://github.com/cloudflare/python-cloudflare', |
| 19 | + license='MIT', |
16 | 20 | packages=['cli4']+find_packages(), |
17 | | - install_requires=required, |
| 21 | + install_requires=['requests'], |
| 22 | + keywords='cloudflare', |
18 | 23 | entry_points={ |
19 | 24 | 'console_scripts': [ |
20 | 25 | 'cli4 = cli4.__main__:main' |
21 | 26 | ] |
22 | | - } |
| 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 | + ] |
23 | 37 | ) |
24 | 38 |
|
25 | 39 | package_dir = {'CloudFlare': 'lib'} |
0 commit comments