forked from lysol/moves
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (23 loc) · 874 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
#!/usr/bin/env python
from setuptools import setup
setup(name='moves',
version='0.1',
description='Moves Client API',
author='Derek Arnold',
author_email='[email protected]',
url='https://github.com/lysol/moves',
download_url='https://github.com/lysol/moves/archive/v0.1.tar.gz',
packages=['moves'],
install_requires=open('requirements.txt').read(),
long_description=open('README.md').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
license='MIT'
)