-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1014 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
25
26
27
28
29
30
31
32
from setuptools import setup, find_packages
exec(open('seed2lp/_version.py').read())
setup(
name='seed2lp',
version=__version__,
description='Seed searching from network as SBML using Logic programming',
url='http://github.com/*/*',
author='Chabname Ghassemi Nedjad',
author_email='[email protected]',
license='GPL',
classifiers =[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.10",
"Programming Language :: ASP",
],
packages=find_packages(),
package_data={
"": ["*.yaml"],
},
entry_points = {
'console_scripts': ['seed2lp=seed2lp.__main__:main'],
},
zip_safe=False,
include_package_data = True
)