-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (34 loc) · 1.4 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from os.path import join, dirname
here = dirname(__file__)
setup(name='satoshi',
version='0.1.1',
description='Manipulate satoshi-related prices in Python 3, simple and sweet.',
long_description=open(join(here, 'README.md')).read(),
license='MIT',
long_description_content_type="text/markdown",
author='canokaue',
author_email='[email protected]',
url='https://github.com/quan-digital/satoshi/',
download_url = 'https://github.com/quan-digital/satoshi/dist/satoshi-0.1.1.tar.gz',
install_requires=[
'requests==2.23.0'
],
packages=find_packages(),
keywords = ['satoshi', 'satoshi-nakamoto', 'bitcoin', 'crypto-api', 'bitcoin-price', 'bitcoin-api',
'satoshi-price', 'digital-currency', 'fiat'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Topic :: Software Development',
'License :: OSI Approved :: MIT License',
'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',
],
)