-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 1.04 KB
/
setup.py
File metadata and controls
31 lines (30 loc) · 1.04 KB
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
setup(
name="envr",
packages=["envr"],
version="0.3.6",
description=(
"Manipulate and transform .env files "
+ "that are a subset of POSIX-compliant shell scripts."
),
install_requires=["six"],
author="ypcrts",
author_email="ypcrts",
url="https://github.com/ypcrts/envr",
keywords=["env", "dotenv", "heroku", "environment", "python-environ"],
license="MPL 2.0",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: PyPy",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
"Environment :: Web Environment",
],
test_suite="test.load",
)