-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (45 loc) · 1.25 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
41
42
43
44
45
46
from setuptools import setup, find_packages
setup(
name='coben',
version='0.1.0',
description='A tool to manage and streamline software project workflows.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Dieter Steuten',
author_email='[email protected]',
url='https://github.com/dingste/coben',
packages=find_packages(),
include_package_data=True,
install_requires=[
'mkdocs',
'plantuml',
'clang',
'psutil',
'mkdocs-plantuml',
'plantuml-markdown',
'mkdocs-include-markdown-plugin',
'mkdocs-extra-sass-plugin',
'mkdocs-git-revision-date-localized-plugin',
'mkdocs-material',
'mkdocs-material-extensions',
'mkdocs-with-pdf',
'weasyprint',
'regex',
'libsass',
'jinja2',
'mkdocs_puml',
'ruamel.yaml',
'click',
],
entry_points={
'console_scripts': [
'coben=coben.coben:main',
],
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)