-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.cfg
41 lines (38 loc) · 1001 Bytes
/
setup.cfg
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
[metadata]
name = GraphDash
description = A web-based dashboard built from graphs and their metadata
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/AmadeusITGroup/graphdash
author = Alex Prengère
author_email = [email protected]
license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
[options]
zip_safe = False
packages = find:
install_requires =
PyYAML
Flask
Markdown
Pygments
stop-words
python_requires = >=3.6.1
setup_requires =
setuptools_scm
scripts =
GraphDashManage
[options.package_data]
graphdash =
templates/*.html
assets/css/*
assets/js/*
assets/img/*
[options.entry_points]
console_scripts =
GraphDash = graphdash.__main__:main