-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (44 loc) · 1.42 KB
/
setup.py
File metadata and controls
50 lines (44 loc) · 1.42 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import scipplan
from setuptools import setup, find_namespace_packages
def readme():
with open("README.md") as f:
return f.read()
setup(
name='scipplan',
version=scipplan.__version__,
description="Metric Hybrid Factored Planning in Nonlinear Domains with Constraint Generation in Python.",
long_description=readme(),
long_description_content_type="text/markdown",
license="MIT License",
author=scipplan.__author__,
author_email=scipplan.__email__,
packages=find_namespace_packages(), # Automatically find all packages
include_package_data=True,
package_data={
# "": ["translation/*.txt"],
"scipplan": ["translation/*.txt"]
},
install_requires=[
# "PySCIPOpt>=4.3.0"
# "pyscipopt>=4.0.0"
"PySCIPOpt==5.2.1",
"sympy==1.13.3"
],
entry_points={
'console_scripts': [
'scipplan = scipplan.scipplan:main', # Entry point
],
},
keywords=["scip", "automated planner"],
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
)