-
Notifications
You must be signed in to change notification settings - Fork 74
/
setup.py
44 lines (40 loc) · 1.62 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='json_schema_generator',
version='0.6',
description='A simple json schema generator based on json resource with auto validation tools',
author='Felipe Ramos Ferreira',
author_email='[email protected]',
maintainer='Felipe Ramos Ferreira',
maintainer_email='[email protected]',
url='https://pypi.python.org/pypi/json_schema_generator/',
scripts=['bin/jsonschema_generator.py'],
include_dirs=['json_schema_generator/',],
packages=['json_schema_generator'],
#package_data={'jsonschema_generator': ['test_template.py.tmpl']},
include_package_data=True,
install_requires=[
'jsonschema>=2.3.0'
],
zip_safe=False,
keywords='json_schema, jsonschema, json, generator, api, validator',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Code Generators',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
],
)