-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
29 lines (28 loc) · 927 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
from setuptools import setup, find_packages
from fluentflet.__version__ import VERSION
setup(
name="fluentflet",
version=VERSION,
description="Fluent Design System components for Flet",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Edoardo Balducci",
author_email="edoardoba2004@gmail.com",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=find_packages(),
package_data={"fluentflet": ["static/**/*", "static/*"]},
include_package_data=True,
python_requires=">=3.7",
install_requires=[
"flet[all]>=0.25.2",
],
project_urls={
"Homepage": "https://github.com/Bbalduzz/fluentflet",
"Issues": "https://github.com/Bbalduzz/fluentflet/issues",
},
)