summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg44
1 files changed, 44 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..c218df8
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,44 @@
1[metadata]
2name = etoolkit
3version = attr: etoolkit.__version__
4author = attr: etoolkit.__author__
5author_email = sgs@pichove.org
6description = A simple toolkit for setting environment variables in a flexible way
7long_description = file: README.md
8long_description_content_type = text/markdown
9url = https://github.com/blackm0re/etoolkit
10
11classifiers =
12 Development Status :: 5 - Production/Stable
13 Environment :: Console
14 Intended Audience :: Developers
15 Intended Audience :: System Administrators
16 License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
17 Programming Language :: Python :: 3
18 Programming Language :: Python :: 3.7
19 Programming Language :: Python :: 3.8
20 Programming Language :: Python :: 3.9
21 Programming Language :: Python :: 3.10
22 Programming Language :: Python :: 3.11
23 Operating System :: POSIX
24 Topic :: Security :: Cryptography
25
26project_urls =
27 Bug Tracker = https://github.com/blackm0re/etoolkit/issues
28 Source = https://github.com/blackm0re/etoolkit
29
30[options]
31package_dir =
32 = src
33packages = find:
34python_requires = >=3.7
35
36install_requires =
37 cryptography>=3.2
38
39[options.packages.find]
40where = src
41
42[options.entry_points]
43console_scripts =
44 etoolkit = etoolkit.__main__:main