forked from dnephin/PyStaticConfiguration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 775 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
try:
from setuptools import setup
assert setup
except ImportError:
from distutils.core import setup
import staticconf
setup(
name="PyStaticConfiguration",
version=staticconf.version,
provides=["staticconf"],
author="Daniel Nephin",
author_email="[email protected]",
url="http://github.com/dnephin/PyStaticConfiguration",
description='A python library for loading static configuration',
classifiers=[
"Programming Language :: Python",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
],
extras_require={
'yaml': ['pyyaml'],
},
packages=['staticconf'],
)