-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
44 lines (41 loc) · 1.45 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
# -*- coding: utf-8 -*-
import re
from setuptools import setup, find_packages
import lollipop
def read(fname):
with open(fname) as fp:
content = fp.read()
return content
setup(
name='lollipop',
version=lollipop.__version__,
description=('Data serialization and validation library'),
long_description=read('README.rst'),
author='Maxim Kulkin',
author_email='[email protected]',
url='https://github.com/maximkulkin/lollipop',
packages=['lollipop'],
include_package_data=True,
license='MIT',
zip_safe=False,
keywords=('serialization', 'rest', 'json', 'api', 'marshal',
'marshalling', 'deserialization', 'validation', 'schema',
'marshmallow'),
classifiers=[
'Development Status :: 5 - Production/Stable',
'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'],
)