forked from daanvdk/is_valid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·30 lines (28 loc) · 951 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
#! /usr/bin/env python3
from setuptools import setup
setup(
name='is_valid',
packages=['is_valid'],
package_dir={'is_valid': 'is_valid'},
license='MIT',
version='0.10.0',
description='A small validation library.',
author='Daan van der Kallen',
author_email='[email protected]',
url='https://github.com/daanvdk/is_valid',
keywords=['validation', 'nested', 'predicates'],
classifiers=[
'Development Status :: 4 - Beta',
'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',
'Topic :: Utilities',
],
test_suite='tests',
tests_require=['hypothesis>=3.21.2'],
)