-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (29 loc) · 816 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
from setuptools import setup, find_packages
long_description = open("README.md", "r", encoding="utf-8").read()
# get packages from requirements.txt
requirements = [
"parse",
"waitress",
"WebOB",
"whitenoise",
"requests",
"pytest",
"requests-wsgi-adapter",
"black",
"rich"
]
setup(
name="Lemon-Library",
version="1.3.9",
packages=find_packages(),
install_requires=requirements,
author="Sasen Perera",
author_email="[email protected]",
description="An experimental Full-Stack Framework for Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Sas2k/Lemon",
entry_points={
"console_scripts": ["create-lemon-app = Lemon.create_lemon_app:main"],
},
)