forked from vstconsulting/polemarch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
52 lines (48 loc) · 1.57 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
[metadata]
version = attr: polemarch.__version__
description = Polemarch is ansible based service for orchestration infrastructure.
long_description = file: README.rst
long_description_content_type = text/x-rst
license = AGPLv3+
author = VST Consulting
author_email = [email protected]
url = https://gitlab.com/vstconsulting/polemarch
keywords =
ansible
polemarch
infrastructure
devops
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 2.2
Operating System :: POSIX
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Programming Language :: Cython
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3 :: Only
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Topic :: System :: Systems Administration
Topic :: Utilities
[options]
zip_safe = False
include_package_data = True
python_requires = >=3.6, <4.0
[build_sphinx]
project = 'Polemarch'
[githubrelease]
repo = vstconsulting/polemarch
assets =
dist/polemarch-{release}.tar.gz
dist/polemarch-{release}-py3-none-any.whl
dist/polemarch-{release}-cp36-cp36m-manylinux1_x86_64.whl
dist/polemarch-{release}-cp37-cp37m-manylinux1_x86_64.whl
[aliases]
compile_docs = build_sphinx -b html -s ./doc/ --build-dir ./polemarch/doc/
compile = compile_docs compile
sdist = compile_docs sdist