-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
24 lines (22 loc) · 947 Bytes
/
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
from setuptools import setup
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='smatchpp',
version='1.7.0',
description='A Python package for graph processing',
url='https://github.com/flipz357/smatchpp',
author='Juri Opitz',
author_email='[email protected]',
license='GPLv3',
packages=['smatchpp',
'smatchpp.formalism.amr',
'smatchpp.formalism.generic'],
long_description=long_description,
long_description_content_type='text/markdown',
python_requires=">=3.5",
install_requires=['numpy>=1.20.1', 'scipy>=1.10.1', 'mip>=1.13.0'], # tested with mip==1.13.0, scipy==1.10.1, numpy==1.20.1
classifiers=["License :: OSI Approved :: GNU General Public License v3 (GPLv3)"],
package_data={'smatchpp': ['formalism/amr/resource/*']})