-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (27 loc) · 1.05 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
# -*- coding: utf-8 -*-
"""Setup file for easy installation"""
from setuptools import setup
version = __import__('pyparams').__version__
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(),
classifiers=[
'License :: OSI Approved :: Apache License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7'],
zip_safe=False)