-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (30 loc) · 972 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
29
30
31
32
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='skame',
version=":versiontools:skame:",
description="Schema validation for python dicts",
long_description="",
keywords='schema, validation',
author='Anler Hernandez Peral, Jesús Espino García',
author_email='anler86@gmail.com, jespinog@gmail.com',
url='https://github.com/kaleidos/skame',
license='BSD',
packages=['skame'],
install_requires=[],
setup_requires=[
'versiontools >= 1.9.1',
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)