-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (51 loc) · 1.64 KB
/
Copy pathsetup.py
File metadata and controls
53 lines (51 loc) · 1.64 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
44
45
46
47
48
49
50
51
52
53
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="industrial-digital-twin-transformer",
version="1.0.0",
author="FTF1990",
author_email="ftf1990@users.noreply.github.com",
description="Transformer-based models for industrial digital twin sensor prediction",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/FTF1990/Industrial-digital-twin-by-transformer",
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.8",
install_requires=[
"torch>=2.0.0",
"numpy>=1.21.0",
"pandas>=1.3.0",
"scikit-learn>=1.0.0",
"scipy>=1.7.0",
"matplotlib>=3.4.0",
"seaborn>=0.11.0",
"gradio>=4.0.0",
"tqdm>=4.62.0",
],
extras_require={
"dev": [
"pytest>=6.0",
"black>=21.0",
"flake8>=3.9",
"mypy>=0.910",
],
"notebook": [
"jupyter>=1.0.0",
"notebook>=6.4.0",
"ipywidgets>=7.6.0",
],
},
)