-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (38 loc) · 1.33 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
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
from setuptools import setup
setup(name='isityaml',
version='0.7',
description='A Django app for checking the correctness of YAML',
author='Peter Murphy',
author_email='[email protected]',
url='http://pypi.python.org/pypi/isityaml/',
packages=['isityaml'],
package_data={
'isityaml': [
'templates/isityaml/*.html',
],
},
keywords = 'YAML parse text Django',
license='LICENSE.txt',
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
'License :: OSI Approved :: BSD License',
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
"Topic :: Education",
],
long_description=open('README.rst').read(),
install_requires = ["Django >= 1.1.1", "PyYAML >= 3.0"],
)