Skip to content
This repository was archived by the owner on Nov 22, 2024. It is now read-only.

Commit d3c2d97

Browse files
committed
Added lots of structure to get https://pypi.python.org/pypi working
1 parent a6b6593 commit d3c2d97

1 file changed

Lines changed: 22 additions & 8 deletions

File tree

setup.py

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,37 @@
33
import os
44
from setuptools import setup, find_packages
55

6-
with open('requirements.txt') as f:
7-
required = f.read().splitlines()
6+
with open('README.rst') as f:
7+
long_description = f.read()
88

99
setup(
10-
name='python-cloudflare-v4',
11-
version='1.1',
10+
name='python-cloudflare-test',
11+
version='1.1.9',
1212
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',
1518
url='https://github.com/cloudflare/python-cloudflare',
19+
license='MIT',
1620
packages=['cli4']+find_packages(),
17-
install_requires=required,
21+
install_requires=['requests'],
22+
keywords='cloudflare',
1823
entry_points={
1924
'console_scripts': [
2025
'cli4 = cli4.__main__:main'
2126
]
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+
]
2337
)
2438

2539
package_dir = {'CloudFlare': 'lib'}

0 commit comments

Comments
 (0)