This repository was archived by the owner on May 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (33 loc) · 1.24 KB
/
setup.py
File metadata and controls
37 lines (33 loc) · 1.24 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
exec(open("erc20token/version.py").read())
with open('requirements.txt') as f:
requires = [line.strip() for line in f if line.strip()]
with open('requirements-dev.txt') as f:
tests_requires = [line.strip() for line in f if line.strip()]
setup(
name='erc20token',
version=__version__,
description='ERC20 token SDK for Python',
author='Kin Foundation',
author_email='david.bolshoy@kik.com',
maintainer='David Bolshoy',
maintainer_email='david.bolshoy@kik.com',
url='https://github.com/kinfoundation/erc20token-sdk-python',
license='GPLv2',
packages=["erc20token"],
long_description=open("README.md").read(),
keywords=["ethereum", "erc20", "blockchain", "cryptocurrency"],
classifiers=[
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
install_requires=requires,
tests_require=tests_requires,
python_requires='>=2.7',
)