forked from tehtbl/python-ctapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (32 loc) · 1.06 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·37 lines (32 loc) · 1.06 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='python-ctapi',
version='0.3.0',
packages=['ctapi'],
install_requires=[
'requests==2.18.4',
'future==0.16.0',
'PyYAML==3.11',
],
author='tbl42',
author_email='cyberworker@posteo.de',
url='https://github.com/tbl42/python-ctapi',
description='Python Interface for CoinTracking.info API',
long_description=open('README.md').read(),
keywords = 'cointracking info btc api',
license='MIT',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Topic :: Office/Business :: Financial',
]
)