forked from StellarCN/py-stellar-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.15 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
# coding: utf-8
import codecs
from setuptools import setup, find_packages
with codecs.open('README.md', encoding='utf-8') as file:
long_description = file.read()
setup(
name='stellar-base',
version='0.1.8',
description='stellar-base in python.',
long_description=long_description,
url='http://github.com/stellarCN/py-stellar-base/',
license='Apache',
author='Eno',
author_email='[email protected]',
include_package_data=True,
packages=find_packages(),
classifiers=[
'Development Status :: 0 - Alpha/unstable',
'Intended Audience :: Developers',
'Natural Language :: Chinese',
'License :: OSI Approved :: Apache License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'ed25519', 'crc16', 'requests', 'SSEClient', 'numpy', 'toml', 'mnemonic'
]
)