-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
52 lines (48 loc) · 1.51 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
import io
import os
from setuptools import setup
import py2pddl
# Package meta-data.
VERSION = py2pddl.__version__
DESCRIPTION = "py2pddl: Write planning task as Python classes, then translate to PDDL."
# Import the README and use it as the long-description.
# Note: this will only work if 'README.md' is present in your MANIFEST.in file!
HERE = os.path.abspath(os.path.dirname(__file__))
try:
with io.open(os.path.join(HERE, 'README.md'), encoding='utf-8') as f:
LONG_DESCRIPTION = '\n' + f.read()
except FileNotFoundError:
LONG_DESCRIPTION = DESCRIPTION
# This call to setup() does all the work
setup(
name="py2pddl",
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/remykarem/py2pddl",
author="Raimi bin Karim",
author_email="raimi.bkarim@gmail.com",
python_requires=">=3.6.0",
license="MIT",
# entry_points={
# 'console_scripts': [
# 'p2j=p2j.p2j:main',
# ],
# },
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6'
],
keywords='translate python pddl',
packages=['py2pddl'],
install_requires=[
"fire==0.3.1",
],
include_package_data=True
)