-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
84 lines (79 loc) · 3.07 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
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
82
83
84
from os import path
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from pyvalid import version
def main():
# Describe installer
with open('README.rst') as fd:
long_description = fd.read()
with open(path.join('requirements', 'base.txt')) as fd:
requirements = fd.read().splitlines()
setup(
name='pyvalid',
version=version,
author='Max Hryshchuk',
author_email='[email protected]',
maintainer='Max Hryshchuk',
maintainer_email='[email protected]',
packages=['pyvalid', 'pyvalid.validators'],
url='https://uzumaxy.github.io/pyvalid/',
download_url='https://github.com/uzumaxy/pyvalid/releases',
license='MIT',
description=(
'The module, which allows easily validate function\'s '
'input/output values.'
),
long_description=long_description,
install_requires=requirements,
keywords=[
'pyvalid', 'valid',
'validation', 'type',
'checking', 'check',
'decorator', 'runtime',
'debug', 'test'
],
platforms='Platform Independent',
package_data={
'pyvalid': ['LICENSE', 'README.rst']
},
test_suite='tests',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'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 :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'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',
'Topic :: Utilities'
],
)
if __name__ == '__main__':
main()