-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
39 lines (36 loc) · 1.31 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
# =============================================================================
# @file setup.cfg
# @brief Package metadata and PyPI configuration
# @author Michael Hucka <[email protected]>
# @license Please see the file named LICENSE in the project directory
# @website https://github.com/mhucka/zowie
# =============================================================================
[metadata]
name = zowie
version = 1.3.0
description = Write Zotero select links into article attachment files
author = Michael Hucka
author_email = [email protected]
license = BSD 3-clause
license_files = LICENSE
url = https://github.com/mhucka/zowie
# The remaining items below are used by PyPI.
project_urls =
Source Code = https://github.com/mhucka/zowie
Bug Tracker = https://github.com/mhucka/zowie/issues
keywords = Python, utilities
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: BSD License
Intended Audience :: Science/Research
Operating System :: MacOS :: MacOS X
Programming Language :: Python :: 3.8
long_description = file:README.md
long_description_content_type = text/markdown
[options]
packages = find:
zip_safe = False
python_requires = >= 3.8
[options.entry_points]
console_scripts =
zowie = zowie.__main__:console_scripts_main