auto-archiver/setup.cfg

53 wiersze
1.2 KiB
INI
Czysty Zwykły widok Historia

2023-01-21 19:01:02 +00:00
[metadata]
name = auto_archiver
2023-02-08 09:49:48 +00:00
version = attr: auto_archiver.version.__version__
2023-01-21 19:01:02 +00:00
author = Bellingcat
author_email = tech@bellingcat.com
description = Easily archive online media content
2023-02-07 23:43:50 +00:00
long_description = file: README.md
2023-02-08 09:27:53 +00:00
long_description_content_type = text/markdown
2023-01-21 19:01:02 +00:00
keywords = archive, oosi, osint, scraping
license = MIT
classifiers =
2023-02-08 00:02:55 +00:00
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
2023-02-08 09:49:48 +00:00
project_urls =
Source Code = https://github.com/bellingcat/auto-archiver
Bug Tracker = https://github.com/bellingcat/auto-archiver/issues
2023-02-08 10:42:12 +00:00
Bellingcat = https://www.bellingcat.com
platforms = any
2023-01-21 19:01:02 +00:00
[options]
setup_requires =
setuptools-pipfile
zip_safe = False
package_dir=
=src
packages=find:
find_packages=true
python_requires = >=3.8
2023-02-08 10:42:12 +00:00
[options.package_data]
* = *.html
2023-01-21 19:01:02 +00:00
[options.entry_points]
console_scripts =
auto-archiver = auto_archiver.__main__:main
# [options.extras_require]
# pdf = ReportLab>=1.2; RXP
# rest = docutils>=0.3; pack ==1.1, ==1.3
[options.packages.find]
where=src
# include=auto_archiver*
# exclude =
# examples*
# .eggs*
# build*
# secrets*
# tmp*
# docs*
# src.tests*