-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
38 lines (33 loc) · 1.2 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
import os
from setuptools import find_packages, setup
def _read(fname):
here = os.path.dirname(os.path.abspath(__file__))
return open(os.path.join(here, fname)).read()
setup(
name="ansible-vault",
version="2.1.0",
author="Tomohiro NAKAMURA",
author_email="[email protected]",
url="https://github.com/tomoh1r/ansible-vault",
description="R/W an ansible-vault yaml file",
long_description=_read("README.md"),
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=["setuptools", "ansible"],
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
license="GPLv3",
extras_require={
"dev": ["pytest", "pytest-cov"],
'dev:python_version>="3.6"': ["flake8", "black", "isort[pyproject]", "pylint"],
"release": ["twine"],
},
)