forked from ascmitc/mhl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.22 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1.22 KB
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
author="Patrick Renner, Alexander Sahm",
author_email="opensource@pomfort.com",
description="ASC Media Hash List (ASC MHL)",
entry_points={"console_scripts": ["ascmhl = ascmhl.cli.ascmhl:mhltool_cli"]},
include_package_data=True,
install_requires=[
"Click>=7.0",
"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.8'",
],
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.7",
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)