mirror of
https://github.com/Tanmoy741127/lumi.git
synced 2022-12-02 00:02:32 +03:00
32 lines
968 B
Python
32 lines
968 B
Python
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.7',
|
|
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=[
|
|
"gunicorn==20.1.0",
|
|
"nanoid==2.0.0"
|
|
],
|
|
|
|
)
|