-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
84 lines (71 loc) · 1.69 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
78
79
80
81
82
83
84
[metadata]
name = twclient
version = attr: twclient._version.__version__
author = William Brannon
author_email = [email protected]
url = https://github.com/social-machines/twclient
description = A high-level analytics-focused client for the Twitter API
long_description = file: README.rst, CHANGELOG.rst
long_description_content_type = text/x-rst
license = Apache 2.0
license_files = LICENSE.rst
platform = any
keywords = twitter, tweepy, data science, analytics
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Software Development :: Libraries :: Python Modules
project_urls =
Source Code = https://github.com/mit-ccc/twclient
Bug Tracker = https://github.com/mit-ccc/twclient/issues
Changelog = https://github.com/mit-ccc/twclient/blob/main/CHANGELOG.md
Documentation = https://mit-ccc.github.io/twclient
[options]
zip_safe = true
include_package_data = false
package_dir =
=src
packages = find:
python_requires = >=3.7
install_requires =
tweepy
sqlalchemy
packaging
[options.packages.find]
where=src
[options.entry_points]
console_scripts =
twclient = twclient._cli.entrypoint:cli
[sdist]
formats = zip, gztar
[bdist_wheel]
universal = true
[options.extras_require]
test =
tox>=4.0.0
pytest
vcrpy
pytest-recording
coverage
lint =
mypy
pylint
check =
%(test)s
%(lint)s
ci =
%(check)s
codecov
tox-gh-actions
docs =
sphinx>=4.3.0
sphinx-rtd-theme>=1.2.0rc2
recommonmark
dev =
%(check)s
%(docs)s
psycopg2
mysql-connector-python