forked from jpmckinney/validictory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (27 loc) · 1.12 KB
/
setup.py
File metadata and controls
executable file
·30 lines (27 loc) · 1.12 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
from validictory import __version__
DESCRIPTION = "general purpose python data validator"
LONG_DESCRIPTION = open('README.rst').read()
setup(name='validictory',
version=__version__,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author='James Turk',
author_email='james.p.turk@gmail.com',
url='http://github.com/jamesturk/validictory',
license="MIT License",
platforms=["any"],
packages=find_packages(),
test_suite="validictory.tests",
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)