-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
35 lines (27 loc) · 935 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
from setuptools import setup
from pathlib import Path
ROOT = Path('.')
README_PATH = ROOT / 'README.md'
with README_PATH.open(encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
setup(
name='enforce',
version='0.3.4',
description='Python 3.5+ library for integration testing and data validation through configurable and optional runtime type hint enforcement.',
long_description=LONG_DESCRIPTION,
url='https://github.com/RussBaz/enforce',
author='RussBaz',
author_email='RussBaz@users.noreply.github.com',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
],
keywords="""typechecker validation testing runtime type-hints typing decorators""",
packages=['enforce'],
install_requires=[
'wrapt'
]
)