We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 472cea1 + 5490fa1 commit 4b155f6Copy full SHA for 4b155f6
setup.py
@@ -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