-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (49 loc) · 1.81 KB
/
setup.py
File metadata and controls
52 lines (49 loc) · 1.81 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
REQUIRES = ['six']
with open('README.md') as description_input:
LONG_DESCRIPTION = description_input.read()
setup(
name='stoplight',
version='1.4.1',
description='Input validation framework for Python',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/x-md',
license='Apache License 2.0',
url='https://pypi.org/project/stoplight/',
platforms=['OS Independent'],
project_urls={
'Documentation': 'http://stoplight.readthedocs.io/en/latest/',
'Source': 'https://github.com/painterjd/stoplight',
'Tracker': 'https://github.com/painterjd/stoplight/issues',
},
author='Jamie Painter',
author_email='jamie.painter@rackspace.com',
maintainer='Benjamen Meyer',
maintainer_email='bm_witness@yahoo.com',
install_requires=REQUIRES,
test_suite='stoplight',
zip_safe=False,
include_package_data=True,
packages=find_packages(exclude=['ez_setup', 'stoplight/tests']),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Security'
]
)