-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 756 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='EmbASP',
version='8.0.0',
description='EmbASP',
long_description=open('README.md').read(),
author='Department of Mathematics and Computer Science, University of Calabria',
license='MIT',
author_email='embasp@mat.unical.it',
url='https://www.mat.unical.it/calimeri/projects/embasp/',
packages=find_packages(exclude=["*.test", "*.test.*", "test.*", "test"]),
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
install_requires=['antlr4-python3-runtime==4.7'],
)