-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (28 loc) · 1.01 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
from setuptools import setup, find_packages
with open('requirements.txt') as reqs:
install_requires = [
line for line in reqs.read().split('\n')
if (line and not line.startswith('--')) and (";" not in line)]
with open("README.md") as f:
long_description = f.read()
setup(
author="Fabien MARTY",
author_email="fabien.marty@gmail.com",
name="jinja2_getenv_extension",
version="1.0.2",
license="BSD",
packages=find_packages(),
install_requires=install_requires,
python_requires='>=3.0',
description="a jinja2 extension to access to system environment variables",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/metwork-framework/jinja2_getenv_extension",
keywords="jinja2 extension",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3"
]
)