forked from cloudflare/python-cloudflare
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleaned up tabs and space - tabs only now - Python3 ready
- Loading branch information
Showing
3 changed files
with
33 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,36 +4,36 @@ | |
from setuptools import setup, find_packages | ||
|
||
with open('README.rst') as f: | ||
long_description = f.read() | ||
long_description = f.read() | ||
|
||
setup( | ||
name='cloudflare', | ||
version='1.0.3', | ||
description='Python wrapper for the CloudFlare v4 API', | ||
long_description=long_description, | ||
author='Martin J. Levy', | ||
author_email='[email protected]', | ||
maintainer='Martin J. Levy', | ||
maintainer_email='[email protected]', | ||
url='https://github.com/cloudflare/python-cloudflare', | ||
license='MIT', | ||
packages=['cli4']+find_packages(), | ||
install_requires=['requests'], | ||
keywords='cloudflare', | ||
entry_points={ | ||
'console_scripts': [ | ||
'cli4 = cli4.__main__:main' | ||
name='cloudflare', | ||
version='1.0.3', | ||
description='Python wrapper for the CloudFlare v4 API', | ||
long_description=long_description, | ||
author='Martin J. Levy', | ||
author_email='[email protected]', | ||
maintainer='Martin J. Levy', | ||
maintainer_email='[email protected]', | ||
url='https://github.com/cloudflare/python-cloudflare', | ||
license='MIT', | ||
packages=['cli4']+find_packages(), | ||
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', | ||
] | ||
}, | ||
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'} |