-
Notifications
You must be signed in to change notification settings - Fork 74
/
setup.py
51 lines (43 loc) · 1.26 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 setup, find_packages
about = {}
with open("e2cnn/__about__.py") as fp:
exec(fp.read(), about)
install_requires = [
'torch',
'numpy',
'scipy',
'sympy',
]
setup_requires = []
tests_require = ['scikit-learn', 'scikit-image']
extras_require = {
# 'RBF-FD and Gaussians': ['cython', 'RBF @ git+https://github.com/treverhines/RBF']
}
with open("README.md", 'r', encoding='utf-8') as f:
long_description = f.read()
download_url = 'https://github.com/QUVA-Lab/e2cnn/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,
extras_require=extras_require,
)