-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1.11 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
import pathlib
from setuptools import find_packages, setup
LONG_DESCRIPTION = pathlib.Path("README.md").read_text()
setup(
name="TripleStore",
version="0.2.0",
description="Python 3 triplestore for arbitrary entity relations and inference.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/amogorkon/triplestore",
author="Anselm Kiefner",
author_email="[email protected]",
license="MIT",
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.12",
keywords=["triplestore", "rdf", "semantic", "web", "sparql"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
],
zip_safe=False,
)