-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
28 lines (25 loc) · 917 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
26
27
28
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = f.read()
setup(
name='booby',
version='0.7.0',
description='Data modeling and validation Python library',
long_description=long_description,
url='https://github.com/jaimegildesagredo/booby',
author='Jaime Gil de Sagredo Luna',
author_email='[email protected]',
packages=find_packages(exclude=['tests', 'tests.*']),
use_2to3=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)