diff options
| author | Simeon Simeonov | 2022-03-15 05:54:56 +0100 |
|---|---|---|
| committer | Simeon Simeonov | 2022-03-15 05:54:56 +0100 |
| commit | 44eaafe50370c076269e80d9252bca969814d238 (patch) | |
| tree | f6c3964c92b428c9f68449f828610cf4add2a58e /setup.cfg | |
| parent | 907f80e1889781a69edded00126b3e78ddeb7b8e (diff) | |
Restructure the project in ordere to replace distutils with setup tools
Diffstat (limited to 'setup.cfg')
| -rw-r--r-- | setup.cfg | 44 |
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] | ||
| 2 | name = etoolkit | ||
| 3 | version = attr: etoolkit.__version__ | ||
| 4 | author = attr: etoolkit.__author__ | ||
| 5 | author_email = sgs@pichove.org | ||
| 6 | description = A simple toolkit for setting environment variables in a flexible way | ||
| 7 | long_description = file: README.md | ||
| 8 | long_description_content_type = text/markdown | ||
| 9 | url = https://github.com/blackm0re/etoolkit | ||
| 10 | |||
| 11 | classifiers = | ||
| 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 | |||
| 26 | project_urls = | ||
| 27 | Bug Tracker = https://github.com/blackm0re/etoolkit/issues | ||
| 28 | Source = https://github.com/blackm0re/etoolkit | ||
| 29 | |||
| 30 | [options] | ||
| 31 | package_dir = | ||
| 32 | = src | ||
| 33 | packages = find: | ||
| 34 | python_requires = >=3.7 | ||
| 35 | |||
| 36 | install_requires = | ||
| 37 | cryptography>=3.2 | ||
| 38 | |||
| 39 | [options.packages.find] | ||
| 40 | where = src | ||
| 41 | |||
| 42 | [options.entry_points] | ||
| 43 | console_scripts = | ||
| 44 | etoolkit = etoolkit.__main__:main | ||
