-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
30 lines (28 loc) · 937 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
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name = "flet_route",
version = "0.3.3",
author="Saurabh Wadekar [ INDIA ]",
packages=["flet_route","cli"],
license="MIT",
maintainer="Saurabh Wadekar",
maintainer_email="[email protected]",
keywords=["flet","routing","flet_route","routes","flet app","flet-route","flet simple routing"],
description="This makes it easy to manage multiple views with dynamic routing.",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/saurabhwadekar/flet_route",
include_package_data=True,
install_requires=[
'click==8.1.3',
"repath",
"flet",
],
entry_points= {
'console_scripts':
['flet-route=cli:make_app']
},
)