-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·41 lines (33 loc) · 991 Bytes
/
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
#!/usr/bin/env python
import os
from distutils.core import setup
DIRNAME = os.path.dirname(__file__)
readme = open(os.path.join(DIRNAME, 'README.rst'), 'r')
README = readme.read()
readme.close()
version = __import__('setman').get_version()
setup(
name='django-setman',
version=version,
description='Django settings manager. Another.',
long_description=README,
author='Igor Davydenko',
author_email='playpauseandstop@gmail.com',
maintainer='Igor Davydenko',
maintainer_email='playpauseandstop@gmail.com',
url='https://github.com/odeskps/django-setman',
packages=[
'setman',
'setman.management',
'setman.management.commands',
'setman.migrations',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
],
keywords='django settings manager',
license='BSD License',
)