[go: up one dir, main page]

Menu

[90fee6]: / setup.py  Maximize  Restore  History

Download this file

37 lines (33 with data), 1.1 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
from setuptools import setup
from config.cst import VERSION
DESCRIPTION = open('README.md').read() + '\n\n' + open('docs/CHANGELOG.md').read()
setup(
name='OctoBot',
version=VERSION,
# TODO packages=[''],
url='https://github.com/Drakkar-Software/OctoBot',
license='MIT',
author='Trading-Bot team',
description='Cryptocurrencies alert / trading bot',
long_description=DESCRIPTION,
entry_points={
'console_scripts': [
'coveralls = coveralls.cli:main',
],
},
# TODO install_requires=[],
setup_requires=['pytest-runner'],
# TODO tests_require=[],
# TODO extras_require={},
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',
],
)