-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
50 lines (46 loc) · 1.58 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
#!/usr/bin/env python
from os.path import exists
from setuptools import setup
import versioneer
setup(
name="miniKanren",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Relational programming in Python",
url="http://github.com/pythological/kanren",
maintainer="Brandon T. Willard",
maintainer_email="[email protected]",
license="BSD",
packages=["kanren"],
install_requires=[
"toolz",
"cons >= 0.4.0",
"multipledispatch",
"etuples >= 0.3.1",
"logical-unification >= 0.4.1",
"typing_extensions",
],
package_data={
"kanren": ["py.typed"],
},
tests_require=["pytest", "sympy"],
long_description=open("README.md").read() if exists("README.md") else "",
long_description_content_type="text/markdown",
zip_safe=False,
python_requires=">=3.6",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
)