-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
executable file
·37 lines (32 loc) · 1.1 KB
/
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
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.1',
packages=['ctapi'],
install_requires=[
'requests==2.22.0',
'PyYAML==5.1.2',
],
author='tehtbl',
author_email='[email protected]',
url='https://github.com/tehtbl/python-ctapi',
description='Python Interface for CoinTracking.info API',
long_description=open('README.md').read(),
keywords='CoinTracking info btc api coin tracking',
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',
'Programming Language :: Python :: 3.7',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Topic :: Office/Business :: Financial',
]
)