-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (38 loc) · 1.35 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
from pathlib import Path
import setuptools
def get_readme():
here = Path(__file__).parent
with open(str(Path(here, "README.md")), "r") as file:
content = file.read()
return content
TEST_REQUIRES = ["pytest-cov"]
VERSION = "0.5.9"
NAME = "antidot-html-connector"
setuptools.setup(
name=NAME,
description="HTML connector to FluidTopics",
long_description=get_readme(),
long_description_content_type="text/markdown",
version=VERSION,
author="Antidot",
author_email="[email protected]",
entry_points={"console_scripts": ["html2ft=antidot.connector.html.main:run"]},
classifiers=[
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Development Status :: 4 - Beta",
"Topic :: Documentation",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
],
packages=setuptools.find_namespace_packages(),
package_dir={},
install_requires=["beautifulsoup4", "fluidtopics~=0.2.0", "colorama"],
tests_require=TEST_REQUIRES,
extras_require={"test": TEST_REQUIRES},
url="https://scm.mrs.antidot.net/antidot/html-connector",
zip_safe=True,
)