forked from neon-jungle/wagtail-schema.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·48 lines (40 loc) · 1.22 KB
/
setup.py
File metadata and controls
executable file
·48 lines (40 loc) · 1.22 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
#!/usr/bin/env python
"""
Install wagtail-schema.org using setuptools
"""
from setuptools import find_packages, setup
with open('README.rst', 'r') as f:
readme = f.read()
with open('wagtailschemaorg/_version.py', 'r') as f:
version = '0.0.0'
exec(f.read())
setup(
name='wagtail-schema.org',
version=version,
description="Add Schema.org JSON-LD to your website",
long_description=readme,
author='Tim Heap',
author_email='tim@takeflight.com.au',
url='https://github.com/takeflight/wagtail-schema.org',
install_requires=[
'wagtail>=2.0',
],
zip_safe=False,
license='BSD License',
packages=find_packages(),
include_package_data=True,
package_data={},
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
],
)