forked from mikitex70/plantuml-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (34 loc) · 1.37 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
34
35
36
37
38
39
40
import setuptools
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md")) as f:
long_description = f.read()
with open(path.join(here, 'requirements.txt')) as f:
install_requirements = f.read().splitlines()
with open(path.join(here, 'test-requirements.txt')) as f:
test_requirements = f.read().splitlines()
setuptools.setup(
name="plantuml-markdown",
version="1.4.0",
author="Michele Tessaro",
author_email="[email protected]",
description="A PlantUML plugin for Markdown",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=['Markdown', 'typesetting', 'include', 'plugin', 'extension'],
url="https://github.com/mikitex70/plantuml-markdown",
#packages=setuptools.find_packages(exclude=['test']),
py_modules=['plantuml'],
install_requires=install_requirements,
tests_require=test_requirements,
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Filters",
"Topic :: Text Processing :: Markup :: HTML"
],
)