-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
50 lines (45 loc) · 1.35 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
[metadata]
name = simple-pwgen
version = file: src/SimplePwgen/VERSION
author = Himadri Sekhar Basu
author_email = hsb10@iitbbs.ac.in
description = Simple Password Generator
long_description = file: README.md
long_description_content_type = text/markdown
url = https://www.github.com/hsbasu/simple-pwgen
project_urls =
Bug Tracker = https://www.github.com/hsbasu/simple-pwgen/issues
classifiers =
Development Status :: 5 - Production/Stable
Environment :: X11 Applications :: GTK
Intended Audience :: End Users/Desktop
License :: OSI Approved
:: GNU General Public License v2 or later (GPLv3+)
Operating System :: POSIX
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: Accessories
[options]
package_dir =
= src
packages = find_namespace:
python_requires = >=3.6
include_package_data = True
install_requires =
configobj
PyGObject
setproctitle
[options.package_data]
* = *VERSION, *ui
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
simple-pwgen = SimplePwgen.main:start_SPGCli
[build_i18n]
domain=simple-pwgen
desktop_files=[("share/applications", ("data/simple-pwgen.desktop.in",
))]
schemas_files=[("share/glib-2.0/schemas",
("data/org.mamolinux.simple-pwgen.gschema.xml.in",))
]