-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (41 loc) · 1.46 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
import os,sys
import setuptools
if __name__ == '__main__':
try:
current_directory = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(current_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
except Exception:
long_description = ''
setuptools.setup(
name='iconfinder',
version='0.1',
author="digfish",
author_email="digfish@digfish.org",
description=(
"Easily get the icon associated with an executable in every OS"
),
long_description=long_description,
long_description_content_type='text/markdown',
license="Apache License 2.0",
url="https://github.com/digfish/iconfinder",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Win32 (MS Windows)",
"Environment :: MacOS X",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux"
],
entry_points={
'console_scripts': [
'iconfinder=iconfinder.finder:main'
],
},
include_package_data=True,
package_data={},
install_requires=['pywin32','pyxdg','Pillow']
)