forked from DimitriWeiss/up-ac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 1.17 KB
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='up_ac',
version='0.0.1',
description='An Algorithm Configuration package for unified-planning.',
url='https://github.com/DimitriWeiss/up-ac.git',
author='DW',
author_email='dimitri.weiss@uni-bielefeld.com',
packages=find_packages(exclude=["*.tests"]),
package_data={'': ['test_problems/citycar/*',
'test_problems/counters/*',
'test_problems/depot/*',
'test_problems/htn-transport/*',
'test_problems/matchcellar/*',
'test_problems/miconic/*',
'test_problems/robot_fastener/*',
'test_problems/safe_road/*',
'test_problems/sailing/*',
'test_problems/visit_precedence/*',
'engine_pcs/*']},
include_package_data=True,
install_requires=["unified-planning", "smac", "ConfigSpace",
"tarski", "pebble", "dill"],
license='LICENSE.txt',
)