-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 911 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
31
32
from setuptools import setup
version = '0.3'
setup(
name='env2conf',
version=version,
description='A tool for the config files generation from environment variables',
author='Shaobo Wu',
author_email='[email protected]',
platforms='any',
url='https://github.com/wushaobo/env2conf',
license='MIT',
download_url='https://github.com/wushaobo/env2conf/archive/{}.tar.gz'.format(version),
keywords=['config', 'env'],
scripts=['env2conf'],
install_requires=[
'jinja2>=2.7,<3'
],
classifiers=[
# How mature is this project? Common values are
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)