-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 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
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md")) as f:
long_description = f.read()
setup(
name="simple-env",
packages=["simple_env"],
package_dir={"simple_env": "simple_env"},
package_data={"simple_env": ["__init__.py"]},
version="0.4.0",
description="Super Simple Processing of Environmental Variables",
long_description=long_description,
long_description_content_type="text/markdown",
author="Daniel J. Dufour",
author_email="[email protected]",
url="https://github.com/DanielJDufour/simple-env",
download_url="https://github.com/DanielJDufour/simple-env/tarball/download",
keywords=["env", "environment", "python", "variables"],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Operating System :: OS Independent",
],
install_requires=["shear"],
)