-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 986 Bytes
/
setup.py
File metadata and controls
34 lines (30 loc) · 986 Bytes
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
from pathlib import Path
from setuptools import setup, find_packages
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="zelos-demeter",
version="1.2.0",
packages=find_packages(exclude=["tests", "tests.*", "samples", "samples.*"]),
url="https://zelos-demeter.readthedocs.io",
license="MIT",
author="zelos research",
author_email="zelos@antalpha.com",
description="better DEFI backtesting tool",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.11",
install_requires=[
"numpy>=1.26.4",
"pandas>=2.2.0",
"python-dateutil>=2.9.0.post0",
"pytz>=2024.1",
"six>=1.16.0",
"db-dtypes>=1.2.0",
"tqdm>=4.66.2",
"orjson>=3.9.15",
],
)
# rm -rf ./demeter.egg-info/ && python setup.py sdist upload -r private
# python setup.py sdist
# twine upload -r pypi dist/*