-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
77 lines (66 loc) · 2.23 KB
/
setup.cfg
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
### Change according to your package's requirements ------------------
[options]
python_requires = ~=3.6
setup_requires =
wheel>=0.34.2
setuptools>=44.1.0
install_requires =
Click>=7.1.1
PyNaCl>=1.3.0
requests>=2.23.0
cryptography>=2.9
keyring>=21.2.0
keyrings.alt>=4.0.2
### ------------------------------------------------------------------
### Keep the same structure, Should NOT be changed
### Remember - create __init__.py in each directory that is a package
# [options] <--- we're here
packages = find:
package_dir =
=src
include_package_data = True
[options.packages.find]
where = src
### ------------------------------------------------------------------
### Relevant for packages that can be executed in command-line
### If your package does NOT support command-line, remove this section
[options.entry_points]
console_scripts =
ghs = githubsecrets.__main__:main
### ------------------------------------------------------------------
### Change according to your package's metadata ----------------------
[metadata]
name = githubsecrets
author = Meir Gabay
license = MIT
author_email = unfor19@gmail.com
url = https://github.com/unfor19/githubsecrets
project_urls =
Documentation = https://github.com/unfor19/githubsecrets/wiki
### ------------------------------------------------------------------
### SEO details as will appear in PyPi -------------------------------
# [metadata] <--- we're here
description = A simple CLI to manage GitHub secrets, that are used with GitHub Actions
long_description_content_type = text/markdown
long_description = file: README.md
keywords =
github
secrets
python
devops
cli
platforms = any
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Topic :: Software Development :: Build Tools
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Operating System :: POSIX :: Linux
Operating System :: Unix
Operating System :: MacOS
Operating System :: Microsoft :: Windows
### ------------------------------------------------------------------