-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (42 loc) · 1.59 KB
/
Copy pathsetup.py
File metadata and controls
45 lines (42 loc) · 1.59 KB
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
from setuptools import setup
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="distributed_discovery",
version="0.0.1",
description="A process mining library for distributed processes.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Alexander Collins",
author_email="alexandercollins00@gmail.com",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"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 :: 3 :: Only",
],
keywords="distributed process discovery, pm4py",
packages=['distributed_discovery',
'tests',
'distributed_discovery.objects',
'distributed_discovery.export',
'distributed_discovery.discovery',
'distributed_discovery.visualization',
'distributed_discovery.visualization.assets',
'distributed_discovery.util',
'distributed_discovery.conversion'
],
package_data={'distributed_discovery.visualization.assets': ['envelope.svg', 'envelope_full.svg']},
include_package_data=True,
python_requires=">=3.7, <4",
install_requires=["graphviz", "lxml", "pm4py==2.2.29"],
extras_require={
"dev": ["check-manifest", "black"],
"test": ["coverage", "flake8", "pylint"],
},
)