-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
executable file
·43 lines (39 loc) · 1.26 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
#!/usr/bin/env python
import bexi
from setuptools import setup, find_packages
import sys
assert sys.version_info[0] == 3, "We require Python > 3"
setup(
name='bexi',
version=bexi.__VERSION__,
description=(
'BitShares Exchange Integration (BEXI).'
'A toolkit that allows to deal with deposits and withdrawals on'
'the BitShares Blockchain.'
),
long_description=open('README.rst').read(),
download_url='https://github.com/blockchainbv/bexi/tarball/' + bexi.__VERSION__,
author='Blockchain BV',
author_email='[email protected]',
maintainer='Blockchain Projects BV',
maintainer_email='[email protected]',
url='http://blockchainprojectsbv.com',
keywords=['bitshares'],
packages=find_packages(),
classifiers=[
'License :: OSI Approved :: LGPL License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Development Status :: Beta',
'Intended Audience :: Developers',
],
entry_points={
'console_scripts': [
'bexi = cli:main'
],
},
install_requires=open('requirements.txt').read().split(),
setup_requires=['pytest-runner'],
tests_require=['pytest'],
include_package_data=True,
)