forked from abhishekkrthakur/tez
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 705 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
if __name__ == "__main__":
setup(
name="tez",
version="0.0.5",
description="tez - train pytorch models faster...",
long_description=long_description,
long_description_content_type="text/markdown",
author="Abhishek Thakur",
author_email="abhishek4@gmail.com",
url="https://github.com/abhishekkrthakur/tez",
license="Apache License",
packages=find_packages(),
include_package_data=True,
install_requires=["torch>=1.6.0"],
platforms=["linux", "unix"],
python_requires=">3.5.2",
)