-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (40 loc) · 1.66 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
"""Setuptools for pathlesstaken"""
import pathlib
from setuptools import find_packages, setup
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
version = {}
with open("src/pathlesstaken/version.py") as fp:
exec(fp.read(), version)
setup(
name="pathlesstaken",
version=version.get("__version__"),
description="Library and executable for identifying anomalous file path strings",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/exponential-decay/pathlesstaken",
author="Ross Spencer",
author_email="[email protected]",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Other Audience",
"Topic :: System :: Archiving",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
],
keywords="digital-preservation, file-analysis, string-analysis, filename-analysis",
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.9, <4",
entry_points={
"console_scripts": ["pathlesstaken=pathlesstaken.pathlesstaken:main"]
},
project_urls={
"Part of demystify": "https://github.com/exponential-decay/demystify",
"Bug Reports": "https://github.com/exponential-decay/demystify/issues",
"Source": "https://github.com/exponential-decay/pathlesstaken",
"Ko-Fi": "https://ko-fi.com/beet_keeper",
},
)