forked from cfmrp/mtool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1.36 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
exec(open('version.py').read())
release = __version__
version = '.'.join(release.split('.')[:2])
setuptools.setup(
name="mtool",
version="0.0.1",
author="Stephan Oepen <[email protected]>, Marco Kuhlmann <[email protected]>, "
"Daniel Hershcovich <[email protected]>, Tim O'Gorman <[email protected]>",
author_email="[email protected]",
description="The Swiss Army Knife of Meaning Representation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cfmrp/mtool",
packages=setuptools.find_packages(),
py_modules=["graph", "analyzer", "treewidth", 'main', 'version'],
license='LGPL-3.0',
install_requires=[
'numpy',
],
entry_points = {
'console_scripts': ['mtool=main:main'],
},
classifiers=[
"Environment :: Console",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis"
]
)