-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (27 loc) · 862 Bytes
/
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
# -*- coding: utf-8 -*-
"""
provo
-----
Construct PROV-O compliant provenance graphs.
"""
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
setup(
name="provo",
author="Arne Rümmler",
author_email="[email protected]",
version="1.1.3",
description="Construct PROV-O compliant provenance graphs.",
url="https://github.com/rue-a/provo",
packages=find_packages(".", exclude=["tests", "tests.*"]),
install_requires=["rdflib", "validators", "uuid"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.09",
)