-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
48 lines (37 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
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python3
import sys
from distutils.core import setup
requirements = []
if sys.platform == 'win32':
requirements.append('pywin32')
description = 'A Python wrapper for opening files and folders with the native file dialog.'
try:
long_description = open('README.md').read()
except:
long_description = description
setup(
name='crossfiledialog',
version='0.2.0',
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
author='Maikel Wever',
author_email='[email protected]',
url='https://github.com/maikelwever/crossfiledialog/',
packages=['crossfiledialog'],
install_requires=requirements,
python_requires='>=3.4',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Environment :: X11 Applications :: GTK',
'Environment :: X11 Applications :: KDE',
'Environment :: Win32 (MS Windows)',
'Operating System :: OS Independent',
'Operating System :: Microsoft',
'Operating System :: POSIX :: Linux',
'Topic :: Desktop Environment :: File Managers',
],
)