forked from jaapz/CryptsyPythonAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 814 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 814 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
25
from setuptools import setup
setup(
name='Cryptsy',
version='0.2',
license='GNU GPL2',
url='https://github.com/jaapz/CryptsyPythonAPI',
author='Jaap Broekhuizen <jaapz.b@gmail.com>, '
'Matt Joseph Smith <matt.joseph.smith@gmail.com>',
description='A python wrapper for the Cryptsy API.',
py_modules=['Cryptsy'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)