-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
35 lines (34 loc) · 1.29 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
from setuptools import setup
setup(
name="brunnhilde",
version="1.9.6",
url="https://github.com/tw4l/brunnhilde",
author="Tessa Walsh",
author_email="[email protected]",
py_modules=["brunnhilde"],
scripts=["brunnhilde.py"],
description="A Siegfried-based digital archives reporting tool for directories and disk images",
keywords="archives reporting characterization identification diskimages",
platforms=["POSIX", "Windows"],
install_requires=[],
test_suite="test",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: System :: Archiving",
"Topic :: System :: Filesystems",
"Topic :: Utilities",
],
)