Spaces:
Runtime error
Runtime error
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", "inspector", "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" | |
] | |
) | |