-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
66 lines (61 loc) · 1.65 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
[metadata]
name = outgram
version = 0.1.1
description = Client for Instagram and Threads public GraphQL APIs (Python library + CLI)
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/PythonicCafe/outgram/
keywords = instagram threads graphql api social-media
author = Álvaro Justen
author_email = alvarojusten@gmail.com
license = GNU Lesser General Public License v3 (LGPLv3)
classifiers =
Intended Audience :: Developers
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: Dynamic Content
[options]
include_package_data = true
packages =
outgram
python_requires = >=3.7
install_requires =
requests
[options.extras_require]
img =
pillow
dev =
autoflake
black
coverage
flake8
ipython
isort
pdbpp
pytest
setuptools
twine
wheel
[options.packages.find]
exclude =
data*
test*
Makefile
[options.entry_points]
console_scripts =
outgram = outgram.cli:main
[flake8]
max-line-length = 80
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,docker/data/*
ignore=I001,I003,I004,E231,E501,W503