-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
29 lines (25 loc) · 970 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
import setuptools
# Will force a check on the packages setup
from planutils.package_installation import PACKAGES
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(name='planutils',
version='0.10.16',
description='General library for setting up linux-based environments for developing, running, and evaluating planners.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/AI-Planning/planutils',
author='',
author_email='',
license='MIT',
packages=['planutils'],
scripts=['bin/planutils','bin/planutils_activate'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
],
python_requires='>=3.6',
include_package_data=True,
install_requires=['requests'],
zip_safe=False)