-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
43 lines (39 loc) · 1.16 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
39
40
41
42
43
from setuptools import setup
setup_deps = [
'pytest-runner',
]
test_deps = [
'pytest',
'pytest-cov',
'coveralls',
]
extras = {
'test': test_deps,
}
setup(
name='parameters-validation',
version='1.2.0',
packages=['parameters_validation'],
url='https://github.com/allrod5/parameters-validation',
license='MIT',
author='Rodrigo Martins de Oliveira',
author_email='[email protected]',
description='Easy & clean function parameters validation',
keywords=('validation parameter parameters param params'
' validate check argument arguments arg args'
' type hint'),
setup_requires=setup_deps,
tests_require=test_deps,
extras_require=extras,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
],
)