labylib/setup.py
Victor Westerlund f9cb03b76f 0.1.0 Package release
Release of 0.1.0 as packacke.

Install with `pip3`
2020-11-24 14:13:40 +01:00

22 lines
No EOL
652 B
Python

import setuptools
with open("README.md","r") as fh:
long_description = fh.read()
setuptools.setup(
name="labylib",
version="0.1.0",
author="VicW",
author_email="victor.vesterlund@gmail.com",
description="Python API to modify LabyMod cosmetics",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/VictorWesterlund/labylib",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)