-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 991 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
REQUIREMENTS = ["tika==1.24", "tqdm==4.50", "psutil==5.7.2"]
setuptools.setup(
name="tikatree",
version="0.1.0",
author="Zeigren",
author_email="[email protected]",
description="Directory tree metadata parser using Apache Tika",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://phabricator.kairohm.dev/diffusion/49/",
project_urls={"Project Page": "https://phabricator.kairohm.dev/project/view/51/",},
packages=setuptools.find_packages(),
entry_points={"console_scripts": ["tikatree = tikatree.tikatree:main"]},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Topic :: Utilities",
],
install_requires=REQUIREMENTS,
python_requires=">=3.7",
)