forked from jbrendel/pyparams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (29 loc) · 1.08 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
# -*- coding: utf-8 -*-
"""Setup file for easy installation"""
from setuptools import setup
v = (0, 1, 0)
version = '.'.join(map(str, v))
LONG_DESCRIPTION = """
pyparams is a module for the processing of program parameters
from the command line, the environment or config files.
After a simple parameter specification, the parameters are
processed from the various sources.
"""
def long_description():
return LONG_DESCRIPTION
setup(name='pyparams',
version=version,
author='Juergen Brendel',
author_email='[email protected]',
description='Simple, powerfule program parameter processing.',
license='Apache',
keywords='python, command line, parameters, environment, config file',
url='https://github.com/jbrendel/pyparams',
packages=['pyparams'],
long_description=long_description(),
install_requires=['ruamel.yaml'],
classifiers=[
'License :: OSI Approved :: Apache License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7'],
zip_safe=False)