-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.29 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
32
33
34
35
36
import setuptools
import io
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
version = {}
with io.open('./src/pie/version.py', encoding='utf-8') as file:
exec(file.read(), version)
setuptools.setup(
name="python-pie",
version=version['__version__'],
author="Igor Matchenko",
author_email="[email protected]",
description="Parse static files such as YAML and insert in them data from environment variables",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=['environment variables', 'deployments', 'settings', 'env', 'configurations', 'python', 'pie'],
url="https://github.com/igorMIA/python-pie",
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.7",
)