-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (38 loc) · 1 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (38 loc) · 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
37
38
39
from setuptools import setup, find_packages
setup(
name="alpha-pulse",
version="0.1.0",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"pandas",
"numpy",
"loguru",
"matplotlib",
"sqlalchemy",
"joblib",
"scikit-learn",
"python-dateutil",
"pytz",
"requests",
"aiohttp",
],
extras_require={
"dev": [
"pytest",
"pytest-asyncio",
"pytest-cov",
"flake8",
]
},
python_requires=">=3.11", # Required for datetime.UTC support
description="A powerful and efficient trading data pipeline system",
author="AlphaPulse Team",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Financial and Insurance Industry",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)