-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (45 loc) · 1.68 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
#!/usr/bin/env python
import setuptools
from distutils.core import setup
setup(
name="pyke3",
version="1.1.1",
packages=['pyke', 'pyke.krb_compiler', 'pyke.krb_compiler.ply'],
package_data={
'pyke.krb_compiler': ['*.krb'],
'pyke.krb_compiler.ply': ['README', 'README.pyke'],
},
# old setuptools stuff:
# install_requires = [],
# extras_require = {
# 'regen_docs': ["rest2web>=0.5"],
# 'examples': ["HTMLTemplate>=1.5"],
# 'tests': ["doctest-tools>=1.0a3"],
# },
# zip_safe = True,
# Metadata for upload to PyPI
author="Bruce Frederiksen",
author_email="[email protected]",
description="Python Knowledge Engine and Automatic Python Program Generator",
license="MIT License",
keywords="expert system forward backward chaining backtracking plans",
url="https://github.com/nvitucci/pyke",
long_description="""
Both forward-chaining and backward-chaining rules (which may include
python code) are compiled into python. Can also automatically assemble
python programs out of python functions which are attached to
backward-chaining rules.
""",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Code Generators",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: Log Analysis",
],
)