-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
44 lines (39 loc) · 1.21 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
from setuptools import find_packages
from setuptools import setup
from triangular_arbitrage import PROJECT_NAME, VERSION
PACKAGES = find_packages(
exclude=[
"tests"
]
)
# long description from README file
with open('README.md', encoding='utf-8') as f:
DESCRIPTION = f.read()
REQUIRED = open('requirements.txt').readlines()
REQUIRES_PYTHON = '>=3.10'
setup(
name=PROJECT_NAME,
version=VERSION,
url='https://github.com/Drakkar-Software/Triangular-Arbitrage',
author='Drakkar-Software',
author_email='[email protected]',
description='Triangular arbitrage by OctoBot',
packages=PACKAGES,
long_description=DESCRIPTION,
long_description_content_type='text/markdown',
tests_require=["pytest"],
test_suite="tests",
zip_safe=False,
data_files=[],
include_package_data=True,
install_requires=REQUIRED,
python_requires=REQUIRES_PYTHON,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.10',
],
)