-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (31 loc) · 1008 Bytes
/
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
import setuptools
with open("README.md") as f:
long_description = f.read()
with open('fotosort/VERSION') as f:
version = f.read()
setuptools.setup(
name='fotosort',
version=version,
scripts=['bin/fotosort'],
author="Sandro Kalbermatter",
author_email="",
description="Fotosort is a program for quickly copying or moving pictures from different events into different folders.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/kalsan/fotosort",
packages=setuptools.find_packages(),
package_data={'': ['qml/*', 'images/*', 'VERSION']},
include_package_data=True,
license='GPLv3',
install_requires=[
'pillow',
'pyyaml',
'pyside6',
'appdirs'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
)