summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg45
1 files changed, 0 insertions, 45 deletions
diff --git a/setup.cfg b/setup.cfg
deleted file mode 100644
index 1838e18..0000000
--- a/setup.cfg
+++ /dev/null
@@ -1,45 +0,0 @@
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.9
19 Programming Language :: Python :: 3.10
20 Programming Language :: Python :: 3.11
21 Programming Language :: Python :: 3.12
22 Programming Language :: Python :: 3.13
23 Programming Language :: Python :: 3.14
24 Operating System :: POSIX
25 Topic :: Security :: Cryptography
26
27project_urls =
28 Bug Tracker = https://github.com/blackm0re/etoolkit/issues
29 Source = https://github.com/blackm0re/etoolkit
30
31[options]
32package_dir =
33 = src
34packages = find:
35python_requires = >=3.9
36
37install_requires =
38 cryptography>=3.2
39
40[options.packages.find]
41where = src
42
43[options.entry_points]
44console_scripts =
45 etoolkit = etoolkit.__main__:main