forked from eterey/pyvalid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
81 lines (77 loc) · 3.24 KB
/
setup.py
File metadata and controls
81 lines (77 loc) · 3.24 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
from pyvalid import version
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def main():
# Describe installer
with open('README.rst') as fd:
long_description = fd.read()
with open('requirements.txt') as fd:
requirements = fd.read().splitlines()
setup(
name='pyvalid',
version=version,
author='Maxim Grischuk',
author_email='uzumaxy@gmail.com',
maintainer='Maxim Grischuk',
maintainer_email='uzumaxy@gmail.com',
packages=['pyvalid'],
url='http://uzumaxy.github.io/pyvalid/',
download_url='https://github.com/uzumaxy/pyvalid/releases',
license='BSD',
description='pyvalid is a Python validation tool for checking of '
'input function parameters and return values.',
long_description=long_description,
install_requires=requirements,
keywords=[
'pyvalid', 'valid',
'validation', 'type',
'checking', 'check',
'decorator'
],
platforms='Platform Independent',
package_data={
'pyvalid': ['LICENSE', 'README.rst']
},
test_suite="tests",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows :: Windows 7',
'Operating System :: Microsoft :: Windows :: Windows NT/2000',
'Operating System :: Microsoft :: Windows :: Windows Server 2003',
'Operating System :: Microsoft :: Windows :: Windows Server 2008',
'Operating System :: Microsoft :: Windows :: Windows Vista',
'Operating System :: Microsoft :: Windows :: Windows XP',
'Operating System :: Microsoft',
'Operating System :: OS Independent',
'Operating System :: POSIX :: BSD :: FreeBSD',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: SunOS/Solaris',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python',
'Topic :: Software Development :: Debuggers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Testing'
],
)
if __name__ == '__main__':
main()