-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
64 lines (49 loc) · 1.68 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python3
import os
from setuptools import setup, find_packages
from setuptools.command.install import install as _install
with open("README.md", "r", encoding="utf-8") as f:
long_desc = f.read()
setup(
name="win32-details",
license="GPL-3.0",
version="0.5.0",
author="tfuxu",
description=".exe file details for your Nautilus file browser",
long_description=long_desc,
long_description_content_type="text/markdown",
url="https://github.com/tfuxu/win32-details",
platforms=["Linux", "BSD"],
keywords="nautilus extension exe details gnome",
python_requires=">=3.6",
project_urls={
"Bug Tracker": "https://github.com/tfuxu/win32-details/issues",
"Source Code": "https://github.com/tfuxu/win32-details"
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: Gnome",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX :: BSD",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Utilities"
],
packages=find_packages(),
include_package_data=True,
install_requires=[
"PyExifTool>=0.5.2"
],
entry_points={
"console_scripts": [
"win32-details = win32_details.cli:cli_main"
]
}
)