-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (49 loc) · 1.6 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
45
46
47
48
49
50
51
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="timepulse",
version="0.3.0",
description="A set of algorithms to help with timeseries flow",
long_description=long_description,
long_description_content_type="text/markdown",
author="SQUAREDEV BV",
url="https://github.com/squaredev-io/timepulse",
packages=find_packages(exclude=("tests", "docs")),
install_requires=[
"holidays>=0.38",
"joblib>=1.1.1",
"numpy>=1.24.3",
"pandas>=2.0.2",
"pytest>=7.4.3",
"scikit_learn>=1.3.2",
"setuptools>=65.5.0",
"tensorflow>=2.14.0",
# "tensorflow_macos>=2.14.0",
"typer>=0.9.0",
"xgboost>=2.0.2",
],
extras_require={
"dev": [
"pytest",
]
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3", # Specify which py version you support
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.9", # Minimum version requirement of the package
keywords="timeseries algorithms ml flow ai python machine learning", # Short descriptors for your package
package_data={},
entry_points={
"console_scripts": [
"timepulse_cli=timepulse.cli:main", # This allows you to create a command-line script
],
},
include_package_data=True,
zip_safe=False,
)