-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathsetup.py
30 lines (25 loc) · 851 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, find_packages
# Distribute py wheels
# python3 setup.py bdist_wheel sdist
# twine check dist/*
# cd dist
# twine upload * -u __token__ -p pypi-token
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as r:
install_requires = r.readlines()
setup(
name="flaskwebgui",
version="1.1.6",
description="Create desktop applications with Flask/Django/FastAPI!",
url="https://github.com/ClimenteA/flaskwebgui",
author="Climente Alin",
author_email="[email protected]",
license="MIT",
py_modules=["flaskwebgui"],
install_requires=install_requires,
packages=find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
package_dir={"": "src"},
)