forked from hdg700/django-dbsettings
-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
40 lines (38 loc) · 1.23 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
from setuptools import setup
# Dynamically calculate the version based on dbsettings.VERSION
version_tuple = (1, 3, 0)
if version_tuple[2] is not None:
if type(version_tuple[2]) == int:
version = "%d.%d.%s" % version_tuple
else:
version = "%d.%d_%s" % version_tuple
else:
version = "%d.%d" % version_tuple[:2]
setup(
name='django-dbsettings',
version=version,
description='Application settings whose values can be updated while a project is up and running.',
long_description=open('README.rst').read(),
author='Samuel Cormier-Iijima',
author_email='[email protected]',
maintainer='Jacek Tomaszewski',
maintainer_email='[email protected]',
url='http://github.com/zlorf/django-dbsettings',
packages=[
'dbsettings',
'dbsettings.migrations',
],
include_package_data=True,
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Utilities'
],
zip_safe=False,
)