-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 816 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/python
from setuptools import setup
setup(
name="OpenSRS",
packages=['opensrs'],
install_requires=['httplib2', 'certifi >= 0.0.8'],
version='0.1.4',
description='Higher level Python interface to the OpenSRS XML API',
long_description=open('README.md').read(),
author='Evan Borgstrom',
author_email='evan@fatbox.ca',
url='https://github.com/fatbox/OpenSRS-py',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)