-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 1.23 KB
/
setup.py
File metadata and controls
40 lines (36 loc) · 1.23 KB
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
import setuptools
def readme():
try:
with open('README.md',encoding='utf-8') as f:
return f.read()
except IOError:
return ''
setuptools.setup(
name="SimpleKivy",
version="0.1.0-beta.1",
author="ErgoCreate",
author_email="miguel_nunez95@hotmail.com",
description="A new way to make user interfaces using a PySimpleGUI approach and with all the power of Kivy",
long_description=readme(),
long_description_content_type="text/markdown",
keywords="GUI UI kivy wrapper simple easy beginner novice student android app",
url="https://github.com/ErgoCreate/SimpleKivy",
packages=setuptools.find_packages(include=['SimpleKivy', 'SimpleKivy.*']),
include_package_data=True, # For non-Python files
package_data={
'SimpleKivy': [
'skdata/**/*', # Recursive glob (all files/subdirs)
],
},
install_requires=[
"kivy",
"psutil"
],
classifiers=(
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Multimedia :: Graphics",
"Operating System :: OS Independent"
),
)