-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 1.13 KB
/
setup.py
File metadata and controls
29 lines (27 loc) · 1.13 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
from torchility import __version__
import setuptools
with open("README.md", 'r', encoding="utf8") as fh:
long_description = fh.read()
setuptools.setup(
name="torchility",
version=__version__,
author="hitlic",
author_email="liuchen.lic@gmail.com",
license='MIT',
description="",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/hitlic/torchility",
classifiers=[
'Development Status :: 3 - Alpha',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords='',
packages=setuptools.find_packages(exclude=['__pycache__', '__pycache__/*']),
py_modules=[], # any single-file Python modules that aren’t part of a package
# install_requires=['torch>=2.0', 'pytorch-lightning==2.0', 'torchmetrics==0.11.4', 'matplotlib>=3.3','pyyaml>=5.4', 'tensorboard>2.9'],
install_requires=['torch>=2.0', 'pytorch-lightning==2.0', 'torchmetrics==0.11.4', 'matplotlib>=3.3','pyyaml>=5.4', 'tensorboardX==2.6'],
python_requires='>=3.8'
)