-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (39 loc) · 1.25 KB
/
setup.py
File metadata and controls
43 lines (39 loc) · 1.25 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
40
41
42
43
"""
setup.py
Install the crobat package:
pip install -e . (editable, from the crobat/ project root)
pip install . (standard install)
After installation the crobat package is importable from anywhere and
the `crobat` CLI command is available system-wide.
"""
from setuptools import setup, find_packages
setup(
name="crobat",
version="1.0.0",
description="Cryptocurrency Order Book Analysis Tool",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Ivan E. Perez",
author_email="perez.ivan.e@gmail.com",
url="https://github.com/orderbooktools/crobat",
license="GPLv3",
packages=find_packages(exclude=["tests*"]),
install_requires=[
"coinbase-advanced-py==1.8.2",
"numpy",
"pandas",
],
entry_points={
"console_scripts": [
"crobat=CLI.crobat_cli:main",
],
},
python_requires=">=3.10",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial",
"Topic :: Scientific/Engineering :: Information Analysis",
],
)