-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
25 lines (23 loc) · 960 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
setup(name='lazycontract',
version='0.9.6',
description='Python library to define declarative contracts for serialization and deserialization',
long_description='Please see https://github.com/neilisaac/lazycontract for details',
author='Neil Isaac',
author_email='[email protected]',
license='MIT',
platforms=['Any'],
url='https://github.com/neilisaac/lazycontract',
packages=['lazycontract'],
install_requires=['six'],
tests_require=['pytest', 'tox'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries']
)