EmbASP-Python
setup.py
1 #!/usr/bin/env python
2 
3 from setuptools import setup, find_packages
4 
5 setup(name='EmbASP',
6  version='6.0.0',
7  description='EmbASP',
8  long_description=open('README.md').read(),
9  author='Department of Mathematics and Computer Science, University of Calabria',
10  license='MIT',
11  author_email='embasp@mat.unical.it',
12  url='https://www.mat.unical.it/calimeri/projects/embasp/',
13  packages=find_packages(exclude=["*.test", "*.test.*", "test.*", "test"]),
14  classifiers=[
15  'Development Status :: 5 - Production/Stable',
16  'License :: OSI Approved :: MIT License',
17  'Programming Language :: Python :: 2',
18  'Programming Language :: Python :: 3',
19  ],
20 )
setup
Definition: setup.py:1