forked from litepresence/extinction-event
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·41 lines (37 loc) · 1.19 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import sys
__VERSION__ = '0.14'
assert sys.version_info[0] == 3, "We require Python > 3"
setup(
name='extinction-event',
version=__VERSION__,
description=(
'Extinction event.'
'Cryptocurrency algo trading tools.'
),
long_description=open('README.md').read(),
download_url='https://github.com/litepresence/extinction-event/tarball/' + __VERSION__,
author='litepresence',
author_email='[email protected]',
url='http://www.litepresence.com',
keywords=['bitshares', 'microDEX', 'extinction event'],
packages=find_packages(),
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
],
entry_points={
'console_scripts': [
'microDEX = microDEX.microDEX:main',
'EV = EV.EV:main',
'metaNODE = metaNODE.metaNODE:main'
],
},
install_requires=open('requirements.txt').read().split(),
setup_requires=['pytest-runner'],
tests_require=['pytest'],
include_package_data=True,
)