-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (34 loc) · 921 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
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
packages = [
'catalog'
]
requires = [
'requests>=2.7,<2.8',
'xmltodict>=0.9,<0.10',
'six>=1.9,<2.0'
]
with open('README.md', 'r') as f:
readme = f.read()
setup(
name='catalog',
version='0.0.1',
url='https://github.com/coursereviews/catalog',
author='Dana Silver',
author_email='[email protected]',
install_requires=requires,
packages=packages,
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
)
)