-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1.12 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
# -*- coding: utf-8 -*-
"""Used to validate objects cleanly and simply."""
from setuptools import setup
setup(
name='clean-validator',
version='0.0.5',
url='https://github.com/sxslex/clean-validator',
download_url=(
'https://github.com/sxslex/clean-validator/archive/v0.0.5.tar.gz'
),
author='SleX',
author_email='[email protected]',
description=(
"Used to validate objects cleanly and simply. " +
"Very good for testing implementation. ;)"
),
keywords=['validate', 'object', 'test', 'py.test'],
packages=['clean_validator'],
classifiers=[
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)