forked from nedbat/dinghy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
56 lines (51 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Dinghy setup.cfg
[metadata]
name = dinghy
version = attr: dinghy.__version__
description = Dinghy daily digest tool
long_description = file: README.rst, CHANGELOG.rst
long_description_content_type = text/x-rst
url = https://github.com/nedbat/dinghy
project_urls =
# For some reason, these appear in reverse order on pypi...
Twitter = https://twitter.com/nedbat
Funding = https://github.com/sponsors/nedbat
Issues = https://github.com/nedbat/dinghy/issues
Source = https://github.com/nedbat/dinghy
author = Ned Batchelder
author_email = [email protected]
license = Apache
zip_safe = False
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
packages =
dinghy
package_dir =
= src
install_requires =
aiofiles>=0.8
aiohttp>3
click>8
click-log>0.3
emoji
glom
jinja2>3
pyyaml>=6
[options.package_data]
dinghy =
graphql/*.*
templates/*.*
[wheel]
universal = 1
[scriv]
fragment_directory = scriv.d
rst_header_chars = -.
version = literal: src/dinghy/__init__.py: __version__