-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
76 lines (72 loc) · 2.85 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env python
#
# This software is derived from Django-things originally written and
# copyrighted by John-Michael Oswalt <https://github.com/jmoswalt/django-things>
#
# This is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This software is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Django-things. If not, see <http://gnu.org/licenses/>.
from setuptools import setup, find_packages
VERSION = (0, 4, 5)
def get_version():
version = "%s.%s" % (VERSION[0], VERSION[1])
if VERSION[2] != 0:
version = "%s.%s" % (version, VERSION[2])
return version
__version__ = get_version()
setup(
name='django-things',
version=__version__,
license='GNU Lesser General Public License (LGPL), Version 3',
url='https://github.com/jmoswalt/django-things',
author='John-Michael Oswalt (JMO)',
author_email='[email protected]',
include_package_data=True,
packages=find_packages(),
description='Two Table model for Django for storing other model data. With things, you can create a django project and generate a static site from your database content.',
long_description=open('README.md').read(),
requires=['python (>= 2.6)'],
entry_points="""
[console_scripts]
create-things-project=things.bin.create_things_project:create_project
update-things-project=things.bin.update_things_project:update_project
""",
dependency_links=[
"https://github.com/mtigas/django-medusa/tarball/master#egg=django_medusa-0.1.0",
],
install_requires=[
'Django==1.5.4',
'python-dateutil==2.1',
'django-medusa',
'django-wysiwyg-redactor==0.3.1',
'django-storages==1.1.5',
'boto==2.6.0',
'Markdown==2.3.1',
'Pillow==6.2.0',
'django-reredirects',
'django-apptemplates==0.0.1',
'jsonfield==0.9.19',
'django-braces==1.2.2',
'django-dotenv==1.2',
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
],
)