14 lines
313 B
Python
Executable File
14 lines
313 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(
|
|
name='validator',
|
|
version='0.1.0',
|
|
author='RemiZOffAlex',
|
|
author_email='remizoffalex@gmail.com',
|
|
packages=find_packages(exclude=['prototypes', 'tests']),
|
|
keywords=['data validation', 'validator', 'validation']
|
|
)
|