-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (29 loc) · 901 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
"""Installation module for doceasy.
"""
from os import path
from pathlib import Path
from setuptools import setup, find_packages
setup(
name='doceasy', # Required
url='https://github.com/jpcsmith/doceasy',
author='Jean-Pierre Smith',
author_email='[email protected]',
description='Wrapper around docopt and schema',
long_description=Path(
path.join(path.abspath(path.dirname(__file__)), 'README.md')
).read_text(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
py_modules=['doceasy'],
python_requires='>=3.5',
use_scm_version=True,
setup_requires=['setuptools_scm', 'wheel'],
install_requires=['docopt', 'schema'],
extras_require={
'dev': ["pylint", "flake8", "mypy"],
'test': ["pytest"],
}
)