-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (27 loc) · 941 Bytes
/
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
from setuptools import setup, find_packages
VERSION = "1.0.2"
with open("./README.md") as f:
long_description = f.read()
setup_info = dict(
name="torchrecorder",
version=VERSION,
author="Gautham Venkatasubramanian",
author_email="[email protected]",
url="https://github.com/ahgamut/torchrecorder",
description="Record execution graphs of PyTorch neural networks",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
packages=find_packages("src"),
package_dir={"": "src"},
zip_safe=True,
install_requires=["torch>=1.3", "graphviz"],
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Visualization",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
],
)
setup(**setup_info)