mirror of
https://github.com/yulinfeng000/blive.git
synced 2025-03-14 03:10:53 +08:00
20 lines
500 B
Python
20 lines
500 B
Python
|
import setuptools
|
||
|
|
||
|
with open("./README.md", "r") as f:
|
||
|
description = f.read()
|
||
|
|
||
|
setuptools.setup(
|
||
|
name="blive",
|
||
|
version="0.0.1",
|
||
|
author="cam",
|
||
|
author_email="yulinfeng000@gmail.com",
|
||
|
long_description=description,
|
||
|
long_description_content_type="text/markdown",
|
||
|
url="https://github.com/yulinfeng000/blive",
|
||
|
packages=setuptools.find_packages(),
|
||
|
classifiers=[
|
||
|
"Programming Language :: Python :: 3",
|
||
|
"License :: OSI Approved :: MIT License",
|
||
|
],
|
||
|
)
|