first code commit
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name="pyWebLayout",
|
||||
version="0.1.0",
|
||||
packages=find_packages(),
|
||||
install_requires=[
|
||||
"Pillow",
|
||||
"numpy",
|
||||
],
|
||||
extras_require={
|
||||
"test": [
|
||||
"coverage>=5.0",
|
||||
],
|
||||
"dev": [
|
||||
"coverage>=5.0",
|
||||
"pytest>=6.0",
|
||||
],
|
||||
},
|
||||
author="Duncan Tourolle",
|
||||
author_email="duncan@tourolle.paris",
|
||||
description="A Python library for HTML-like layout and rendering",
|
||||
long_description=open("README.md").read(),
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://gitea.tourolle.paris/pyWebLayout",
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
],
|
||||
python_requires=">=3.6",
|
||||
)
|
||||
Reference in New Issue
Block a user