Skip to content

Commit 4b155f6

Browse files
authored
Merge pull request #7 from sourcelair/prepare-release
Prepare release
2 parents 472cea1 + 5490fa1 commit 4b155f6

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

setup.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
from setuptools import setup
2+
3+
setup(
4+
name="env-spec",
5+
version="0.1.0",
6+
description=(
7+
"Fast, straightforward, validated environment configuration."
8+
),
9+
py_modules=["env_spec"],
10+
url="https://github.com/sourcelair/env-spec-py",
11+
author="SourceLair, Private Company",
12+
author_email="[email protected]",
13+
license="MIT",
14+
classifiers=[
15+
"Development Status :: 3 - Alpha",
16+
"Intended Audience :: Developers",
17+
"Topic :: Software Development",
18+
"License :: OSI Approved :: MIT License",
19+
"Programming Language :: Python :: 3",
20+
"Programming Language :: Python :: 3.6",
21+
"Programming Language :: Python :: 3.7",
22+
],
23+
keywords="environment configuration",
24+
)

0 commit comments

Comments
 (0)