-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 979 Bytes
/
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 setuptools
import re
import os
with open("README.md", "r") as fh:
long_desc = fh.read()
setuptools.setup(
name="deforest",
version="0.4.0",
author="hawry",
entry_points={
"console_scripts": ["deforest=deforest.deforest:main"]
},
author_email="hawry@hawry.net",
description="Remove all x-amazon tags from your OAS3 specification",
long_description=long_desc,
long_description_content_type="text/markdown",
url="https://github.com/hawry/deforest",
packages=setuptools.find_packages(),
install_requires=[
"pyyaml==5.1.1",
"click==7.1.1",
"coloredlogs==10.0"
],
tests_require=[
"parameterized",
"pytest",
"pytest-cov",
"coverage"
],
classifiers=[
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Development Status :: 3 - Alpha"
]
)