forked from wwhenxuan/S2Generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.35 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.35 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="S2Generator",
packages=setuptools.find_packages(),
version="0.0.2",
description="A series-symbol (S2) dual-modality data generation mechanism, enabling the unrestricted creation of high-quality time series data paired with corresponding symbolic representations.", # 包的简短描述
url="https://github.com/wwhenxuan/S2Generator",
author="whenxuan, johnfan12, changewam",
author_email="wwhenxuan@gmail.com",
keywords=["Time Series", "Data Generation"],
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.9",
install_requires=[
"numpy>=1.24.4",
"scipy>=1.14.1",
"matplotlib>=3.9.2",
"scikit-learn>=1.2.2",
"colorama>=0.4.6",
"pysdkit>=0.4.21",
],
)