-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (30 loc) · 1.06 KB
/
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
from setuptools import setup, find_packages
setup(
name='scheme',
version='2.0.3',
description='A declarative schema framework.',
long_description=open('README.rst').read(),
license='BSD',
author='Jordan McCoy',
author_email='mccoy.jordan@gmail.com',
url='https://github.com/arterial-io/scheme',
packages=find_packages(exclude=['docs', 'tests']),
keywords='schema data validation structured api',
install_requires=[
'Jinja2>=2.7',
'PyYAML>=3',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)