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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.rst").read_text(encoding="utf-8")
requirements = ["python-dateutil>=2.2", "networkx>=2.0", "lxml>=3.3.5", "rdflib>=4.2.1"]
test_requirements = ["pydot>=1.2.0"]
setup(
name="prov",
version="2.0.1",
description="A library for W3C Provenance Data Model supporting PROV-JSON, "
"PROV-XML and PROV-O (RDF)",
long_description=long_description,
author="Trung Dong Huynh",
author_email="trungdong@donggiang.com",
url="https://github.com/trungdong/prov",
project_urls={
"Bug Reports": "https://github.com/trungdong/prov/issues",
"Source": "https://github.com/trungdong/prov",
},
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.6, <4",
scripts=["scripts/prov-convert", "scripts/prov-compare"],
include_package_data=True,
install_requires=requirements,
extras_require={
"dot": ["pydot>=1.2.0"],
},
license="MIT",
zip_safe=False,
keywords=[
"provenance",
"graph",
"model",
"PROV",
"PROV-DM",
"PROV-JSON",
"W3C",
"PROV-XML",
"PROV-N",
"PROV-O",
"RDF",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Security",
"Topic :: System :: Logging",
],
test_suite="prov.tests",
tests_require=test_requirements,
)
|