-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 978 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
HERE = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(HERE, 'README.rst')).read()
VERSION = '1.7.0'
setup(name='environconfig',
version=VERSION,
description=("Application configuration from environment "
"variables made easy"),
long_description=README,
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='environment variables configuration',
author='Roberto Abdelkader Martínez Pérez',
author_email='[email protected]',
url='https://github.com/buguroo/environconfig',
license='LGPLv3',
py_modules=["environconfig"],
include_package_data=True,
zip_safe=False,
install_requires=[
])