forked from Drakkar-Software/OctoBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (35 loc) · 1.24 KB
/
setup.py
File metadata and controls
39 lines (35 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
38
39
from setuptools import setup
from config.cst import VERSION
DESCRIPTION = open('README.md').read() + '\n\n' + open('docs/CHANGELOG.md').read()
REQUIRED = open('requirements.txt').read()
REQUIRED_DEV = open('dev_requirements.txt').read()
setup(
name='OctoBot',
version=VERSION,
packages=['backtesting', 'config', 'docs', 'evaluator', 'interfaces', 'services', 'tests', 'tools', 'trading'],
url='https://github.com/Drakkar-Software/OctoBot',
license='Apache-2.0',
author='Trading-Bot team',
description='Cryptocurrencies alert / trading bot',
long_description=DESCRIPTION,
entry_points={
'console_scripts': [
'start = start:main',
],
},
install_requires=REQUIRED,
setup_requires=['pytest-runner'],
tests_require=REQUIRED_DEV,
test_suite="tests",
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)