-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (37 loc) · 1.06 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
34
35
36
37
38
39
40
"""
firelight - A visualization library for PyTorch tensors.
"""
import setuptools
import os
def read_file(filename):
with open(os.path.join(os.path.dirname(__file__), filename)) as f:
return f.read()
setuptools.setup(
name="firelight",
author="Roman Remme",
author_email="[email protected]",
description="A visualization library for PyTorch tensors.",
long_description=read_file('README.md'),
long_description_content_type='text/markdown',
url='https://github.com/inferno-pytorch/firelight',
version="0.2.1",
install_requires=[
"pyyaml>=3.12",
"matplotlib",
"numpy",
"scikit-learn",
"scikit-image",
"torch",
"texttable",
],
extras_requires={
'umap': ['umap-learn>=0.3.8'],
},
license="Apache Software License 2.0",
packages=setuptools.find_packages(),
classifiers=[
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
)