forked from kinecosystem/py-kin-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (38 loc) · 1.58 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
38
39
40
41
42
43
44
45
# coding: utf-8
import codecs
from setuptools import setup, find_packages
package_name = "kin-base"
exec(open("kin_base/version.py").read())
with codecs.open('README.md', encoding='utf-8') as file:
long_description = file.read()
tests_require = ['pytest', 'mock']
with open('requirements.txt') as f:
requires = f.readlines()
setup(
name=package_name,
version=__version__,
description='Code for managing Stellar.org blockchain transactions and accounts using stellar-base in python. Allows full functionality interfacing with the Horizon front end. Visit https://stellar.org for more information.',
long_description=long_description,
keywords=["stellar.org", "lumens", "xlm", "blockchain", "distributed exchange", "cryptocurrency", "dex",
"stellar-core", "horizon", "sdex", "trading"],
url='https://github.com/kinecosystem/py-kin-base/',
license='Apache',
author='Eno, overcat',
author_email='[email protected], [email protected]',
maintainer='Ron Serruya',
maintainer_email='[email protected]',
include_package_data=True,
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
python_requires='>=3.6',
install_requires=requires,
tests_require=tests_require
)