-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 831 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 831 Bytes
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
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/bioasp/seed2lp',
author='Chabname Ghassemi Nedjad',
author_email='chabname.ghassemi-nedjad@inria.fr',
license='GPL',
classifiers =[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.11",
"Programming Language :: ASP",
],
packages=find_packages(),
package_data={
"": ["*.yaml"],
},
entry_points = {
'console_scripts': ['seed2lp=seed2lp.__main__:main'],
},
zip_safe=False,
include_package_data = True
)