-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py
51 lines (44 loc) · 1.18 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
41
42
43
44
45
46
47
48
49
50
51
from setuptools import find_packages, setup
about = {}
with open("escnn/__about__.py") as fp:
exec(fp.read(), about)
install_requires = [
"torch>=1.3",
"numpy",
"scipy",
"lie_learn",
"joblib",
"pymanopt",
"autograd",
"py3nj",
]
setup_requires = [""]
tests_require = ["scikit-learn", "scikit-image"]
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
download_url = "https://github.com/QUVA-Lab/escnn/archive/v{}.tar.gz".format(
about["__version__"]
)
setup(
name=about["__title__"],
version=about["__version__"],
description=about["__summary__"],
author=about["__author__"],
author_email=about["__email__"],
url=about["__url__"],
download_url=download_url,
license=about["__license__"],
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["test", "test.*"]),
python_requires=">=3.7",
keywords=[
"pytorch",
"cnn",
"convolutional-networks" "equivariant",
"isometries",
],
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
)