forked from yola/pycloudflare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 787 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python
from setuptools import setup
import pycloudflare
with open('README.rst') as readme_file:
readme = readme_file.read()
setup(
name=pycloudflare.__name__,
version=pycloudflare.__version__,
description=pycloudflare.__doc__,
long_description=readme,
author='Yola',
author_email='[email protected]',
license='MIT (Expat)',
url=pycloudflare.__url__,
packages=['pycloudflare'],
test_suite='nose.collector',
install_requires=[
'demands >= 4.0.0, < 6.0.0',
'property-caching >= 1.0.0, < 2.0.0',
'six >= 1.4.0, < 2.0.0',
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
)