-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
43 lines (41 loc) · 1.47 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
author="The ASC MHL Working Group (Alex Sahm, Ben Hagen, Jon Waggoner, Mark Hudgins, Patrick Renner, and others.)",
author_email="[email protected]",
description="ASC Media Hash List (ASC MHL)",
entry_points={
"console_scripts": [
"ascmhl = ascmhl.cli.ascmhl:mhltool_cli",
"ascmhl-debug = ascmhl.cli.ascmhl_debug:mhldebugtool_cli",
# "ascmhl-dev = ascmhl.cli.ascmhl_dev:mhldevtool_cli",
]
},
include_package_data=True,
install_requires=[
"Click~=8.1.7",
"lxml>=4.6.2",
"packaging>=20.9",
"pathspec>=0.8.0",
"requests>=2.25.1",
"xxhash>=2.0.0",
"python-dateutil>=2.8.2",
"importlib-metadata>=4.0.1; python_version >= '3.11'",
],
dependency_links=[],
long_description=long_description,
long_description_content_type="text/markdown",
name="ascmhl",
packages=find_packages(),
setup_requires=["pytest-runner", "setuptools_scm"],
tests_require=["pytest", "pytest_mock", "pyfakefs", "freezegun", "requests-mock", "testfixtures"],
url="https://github.com/ascmitc/mhl",
use_scm_version=True,
python_requires=">=3.11",
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)