-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 764 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 764 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
from setuptools import find_packages, setup
__version__ = '0.0.0'
with open('requirements.txt', 'r') as req:
install_requires = req.readlines()
setup(
name='MotiFiesta',
version=__version__,
description='Neural Approximate Motif Mining (user-friendly version)',
author = "Carlos Oliver",
author_email = "carlos.oliver@bsse.ethz.ch",
keywords = ['pattern-mining',
'deep-learning',
'graphs',
'pytorch',
'torch-geometric',
],
python_requires='>=3.7',
install_requires=install_requires,
packages=find_packages(),
include_package_data=True,
scripts=['scripts/motifiesta', 'scripts/build_data_motifiesta', 'scripts/motifiesta_example']
)