-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 780 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 780 Bytes
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
import pathlib
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
install_requires = [
'torch',
'numpy',
'mnist',
'tqdm',
'scikit-learn',
'scikit-image',
'matplotlib',
'open3d-python',
]
setup(
name="torch_pdegraph",
version="1.1.2",
description="Running paritial difference equations (PDEs) on graphs",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/aGIToz/Pytorch_pdegraph",
python_requires='>=3.6',
install_requires=install_requires,
packages=find_packages(),
author="Amitoz AZAD",
author_email="amitoz.sudo@gmail.com",
license="MIT",
include_package_data=True,
)