-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (51 loc) · 1.96 KB
/
setup.py
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import setuptools
from salted import _version
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="salted",
version=f"{_version.__version__}",
author="Rüdiger Voigt",
author_email="projects@ruediger-voigt.eu",
description="Smart, Asynchronous Link Tester with Database backend",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/RuedigerVoigt/salted",
package_data={
"salted": ["py.typed", "templates/*.jinja"]},
include_package_data=True,
entry_points={
'console_scripts': ['salted=salted.command_line:main'],
},
packages=setuptools.find_packages(),
python_requires=">=3.8",
install_requires=["aiodns>=3.0.0",
"aiohttp>=3.7.4",
"beautifulsoup4>=4.9.3",
"cchardet>=2.1.7",
"compatibility>=1.0.0",
"jinja2>=3.0.1",
"lxml>=4.6.3",
"pybtex>=0.24.0",
"sqlalchemy>=1.4.21",
"tqdm>=4.61.2",
"userprovided>=0.9.2"],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
#"Development Status :: 5 - Production/Stable",
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"Topic :: Internet :: WWW/HTTP :: Site Management :: Link Checking"
],
)