forked from neon-jungle/wagtailmodelchooser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·43 lines (36 loc) · 1.13 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
41
42
43
#!/usr/bin/env python
"""
Install wagtailmodelchooser using setuptools
"""
from setuptools import find_packages, setup
with open('wagtailmodelchooser/version.py', 'r') as f:
version = None
exec(f.read())
with open('README.rst', 'r') as f:
readme = f.read()
setup(
name='wagtail-modelchooser',
version=version,
description='Model choosers for Wagtail admin',
long_description=readme,
author='Tim Heap',
author_email='[email protected]',
url='https://github.com/takeflight/wagtailmodelchooser/',
install_requires=['wagtail>=2.2'],
zip_safe=False,
license='BSD License',
packages=find_packages(exclude=['tests*']),
include_package_data=True,
package_data={},
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
],
)