forked from gitlabform/gitlabform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (46 loc) · 1.7 KB
/
setup.py
File metadata and controls
50 lines (46 loc) · 1.7 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
from setuptools import setup, find_packages
from pypandoc import convert_file
def convert_markdown_to_rst(file):
return convert_file(file, 'rst')
setup(name='gitlabform',
version=open('version').read(),
description='Specialized "configuration as a code" tool for GitLab projects, groups and more'
' using hierarchical configuration written in YAML',
long_description=convert_markdown_to_rst('README.md'),
url='https://github.com/egnyte/gitlabform',
author='Egnyte and GitHub Contributors',
keywords=['gitlab', 'configuration-as-code'],
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Version Control :: Git",
],
packages=find_packages(),
install_requires=[
'certifi', # we want the latest root certs for security
'requests==2.24.0',
'chardet==3.0.4',
'idna==2.10',
'Jinja2==2.11.2',
'MarkupSafe==1.1.1',
'PyYAML==5.3.1',
'urllib3==1.25.10',
'luddite==1.0.1',
],
tests_require=[
'pytest',
],
setup_requires=[
'pypandoc',
],
scripts=[
'bin/gitlabform',
],
)