forked from tanmoysrt/lumi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 968 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='lumi',
packages=find_packages(),
version='1.0.11',
description='Convert your Python functions into REST API without any extra effort 🔥',
long_description=long_description,
long_description_content_type="text/markdown",
author='Tanmoy Sarkar',
author_email='ts741127@gmail.com',
license='BSD',
url="https://github.com/Tanmoy741127/lumi",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
],
keywords='rpc rest api web backend framework',
python_requires='>=3.6',
install_requires=[
"nanoid==2.0.0",
"waitress==2.1.2"
],
)