Skip to content

Commit

Permalink
Added lots of structure to get https://pypi.python.org/pypi working
Browse files Browse the repository at this point in the history
  • Loading branch information
mahtin committed May 10, 2016
1 parent a6b6593 commit d3c2d97
Showing 1 changed file with 22 additions and 8 deletions.
30 changes: 22 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,37 @@
import os
from setuptools import setup, find_packages

with open('requirements.txt') as f:
required = f.read().splitlines()
with open('README.rst') as f:
long_description = f.read()

setup(
name='python-cloudflare-v4',
version='1.1',
name='python-cloudflare-test',
version='1.1.9',
description='Python wrapper for the CloudFlare v4 API',
author='gnowxilef,Martin J. Levy',
author_email='felix@fawong.com,martin@cloudflare.com',
long_description=long_description,
author='Martin J. Levy',
author_email='martin@cloudflare.com',
maintainer='Martin J. Levy',
maintainer_email='mahtin@mahtin.com',
url='https://github.com/cloudflare/python-cloudflare',
license='MIT',
packages=['cli4']+find_packages(),
install_requires=required,
install_requires=['requests'],
keywords='cloudflare',
entry_points={
'console_scripts': [
'cli4 = cli4.__main__:main'
]
}
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
]
)

package_dir = {'CloudFlare': 'lib'}

0 comments on commit d3c2d97

Please sign in to comment.