forked from podio/conssert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 828 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="conssert",
version="0.2.11",
description="Content assertion library for Python",
url="https://github.com/podio/conssert",
download_url="https://github.com/podio/conssert/tarball/0.2.11",
author="Juan Alvarez",
author_email="juan.afernandez@ymail.com",
platforms=["any"],
packages=find_packages(exclude="tests"),
keywords=["validation", "test", "unit test", "content assertion"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
],
)