-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (39 loc) · 1.15 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
#!/usr/bin/env python3
from setuptools import setup
long_description = """
Manage your files. Better.
"""
setup(
name='strawberry',
version='5.0.0',
description='Strawberry',
long_description=long_description.strip(),
author='Vincenzo Talarico',
author_email='vincenzo.donato2002@gmail.com',
url='https://github.com/oneafter909/strawberryfilereorder',
keywords='reorder',
license='GPLv3',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
packages=['strawberry'],
python_requires='>=3.5',
scripts=[
'strawberry/swb.py',
'strawberry/creationdateutils.py',
'strawberry/GUI.py',
'strawberry/identifier.py',
'strawberry/__main__.py',
'strawberry/reorderutility.py',
],
entry_points={
'console_scripts': [
'strawberry=swb:begin',
],
}
)