forked from platformsh/colander-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 871 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.rst")) as f:
README = f.read()
setup(
name="colander_tools",
version="0.5.0",
description="Extensions to `colander`, particularly useful as part of REST API validation.",
long_description=README,
license="BSD",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
],
keywords="",
author="Platform.sh",
author_email="sayhello@platform.sh",
url="https://github.com/platformsh/colander-tools",
packages=find_packages(),
install_requires=[
"colander",
],
)