2021-05-15 05:39:18 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="arrdem.datalog",
|
|
|
|
# Package metadata
|
|
|
|
version="2.0.1",
|
|
|
|
license="MIT",
|
|
|
|
description="A Datalog engine",
|
|
|
|
long_description=open("README.md").read(),
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
author="Reid 'arrdem' McKenzie",
|
|
|
|
author_email="me@arrdem.com",
|
|
|
|
url="https://git.arrdem.com/arrdem/source",
|
|
|
|
classifiers=[
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Topic :: Database",
|
|
|
|
"Topic :: Database :: Database Engines/Servers",
|
|
|
|
"Topic :: Database :: Front-Ends",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.6",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
],
|
|
|
|
# Package setup
|
|
|
|
package_dir={"": "src/python"},
|
2021-05-15 17:34:32 +00:00
|
|
|
packages=[
|
|
|
|
"datalog",
|
|
|
|
],
|
2021-05-15 05:39:18 +00:00
|
|
|
)
|