-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (51 loc) · 1.77 KB
/
setup.py
File metadata and controls
56 lines (51 loc) · 1.77 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
46
47
48
49
50
51
52
53
54
55
56
"""A setuptools based setup module.
See:
https://packaging.python.org/guides/distributing-packages-using-setuptools/
"""
from setuptools import setup, find_packages
import pathlib
CHANGELOG = """
2.1.1-post3 Build system: Add a Makefile
"""
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
version = CHANGELOG.strip().split()[0]
setup(
name="umlsequence2",
version=version,
description="UML Sequence diagram generator from text input",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pbauermeister/umlsequence2",
author="Pascal Bauermeister",
author_email="pascal.bauermeister@gmail.com",
classifiers=[
# https://pypi.org/classifiers/ :
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
],
keywords="diagram-generator, development, tool",
license="GNU General Public License v3 (GPLv3)",
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.10, <4",
install_requires=["svgwrite", "svglib", "reportlab>=4.2.0"],
extras_require={
"dev": ["check-manifest"],
"test": ["coverage"],
},
package_data={},
entry_points={
"console_scripts": [
"umlsequence2=umlsequence2:main",
],
},
project_urls={
"Bug Reports": "https://github.com/pbauermeister/umlsequence2/issues",
"Source": "https://github.com/pbauermeister/umlsequence2",
},
)