-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (29 loc) · 1.07 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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
readme = fh.read()
requirements = {"install": ["ffmpeg", "natsort", "numpy", "tqdm", "torch", "torchvision",
"tensorboard", "coloredlogs", "petname", "pandas", "setproctitle",
"multiprocess", "python-box"]}
install_requires = requirements["install"]
setup(
# Metadata
name="torch-lighter",
author="Marius-Constantin Dinu",
version="0.2.25",
author_email="[email protected]",
url="https://github.com/Xpitfire/lighter",
scripts=['bin/lighter-init'],
description="Lightweight extension for torch to speed-up prototyping.",
long_description=readme,
long_description_content_type="text/markdown",
# Package info
packages=find_packages(),
zip_safe=True,
install_requires=install_requires,
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent"
]
)