You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.3 KiB
40 lines
1.3 KiB
from setuptools import setup, find_packages |
|
|
|
with open("README.md", "r", encoding="utf-8") as fh: |
|
long_description = fh.read() |
|
|
|
setup( |
|
name="badgui", |
|
version="0.1.0", |
|
author="Matteo Benedetto", |
|
author_email="me@enne2.net", |
|
description="A Python framework that generates Vue.js/Quasar projects with NiceGUI-like syntax", |
|
long_description=long_description, |
|
long_description_content_type="text/markdown", |
|
url="https://github.com/enne2/badgui", |
|
packages=find_packages(), |
|
classifiers=[ |
|
"Development Status :: 3 - Alpha", |
|
"Intended Audience :: Developers", |
|
"License :: OSI Approved :: MIT License", |
|
"Operating System :: OS Independent", |
|
"Programming Language :: Python :: 3", |
|
"Programming Language :: Python :: 3.8", |
|
"Programming Language :: Python :: 3.9", |
|
"Programming Language :: Python :: 3.10", |
|
"Programming Language :: Python :: 3.11", |
|
"Topic :: Software Development :: User Interfaces", |
|
"Topic :: Software Development :: Code Generators", |
|
], |
|
python_requires=">=3.8", |
|
install_requires=[ |
|
# No external dependencies for now, just standard library |
|
], |
|
extras_require={ |
|
"dev": [ |
|
"pytest>=6.0", |
|
"black>=21.0.0", |
|
"flake8>=3.8.0", |
|
], |
|
}, |
|
) |