-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 715 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
from distutils.core import setup
setup(name='python-cryptsy',
version='0.1.0',
packages=['cryptsy'],
modules=[
'cryptsy.public',
'cryptsy.private',
'cryptsy.bterapi',
],
description='Python bindings for cryptsy.com API.',
author='Henry S. Harrison',
author_email='henry.schafer.harrison@gmail.com',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Development Status :: 3 - Alpha',
'Topic :: Office/Business :: Financial',
])