-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (38 loc) · 1.35 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
def read(fname):
with open(fname) as fp:
content = fp.read()
return content
setup(
name='lollipop-jsonschema',
version='0.8.2',
description=('Library to convert Lollipop schema to JSON schema'),
long_description=read('README.rst'),
author='Maxim Kulkin',
author_email='[email protected]',
url='https://github.com/maximkulkin/lollipop-jsonschema',
packages=['lollipop_jsonschema'],
include_package_data=True,
install_requires=['lollipop>=1.1.5'],
license='MIT',
zip_safe=False,
keywords=('lollipop', 'json', 'schema'),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
)