-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (39 loc) · 1.24 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
# coding: utf-8
"""
==========
Confer
==========
Confer is a configuration loader library.
Python-based software sometimes employs configuration module like config.py
or settings.py which contains one or more setting variables.
Confer is intended to be a small helper to build those settings
on-the-fly from external source: envvars, database or another file on
same/differnet host.
"""
from setuptools import setup
import sys
setup(
name='confer',
version='0.1',
description='A configration loader library',
long_description=sys.modules['__main__'].__doc__,
url='https://github.com/whosaysni/confer',
author='Yasushi Masuda',
author_email='[email protected]',
license='MIT',
platforms='any',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Plugins',
'Framework :: Sphinx :: Extension',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development',
],
keywords='configuration, settings',
packages=['confer'],
package_dir={'confer': 'src/confer'},
test_suite='test.suite', # v2.7 load_tests protocol
)