-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (27 loc) · 793 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
31
32
33
from setuptools import setup, find_packages
with open("README.md", encoding="utf-8") as f:
readme = f.read()
with open("LICENSE", encoding="utf-8") as f:
license = f.read()
reqs = ""
try:
with open("requirements.txt", encoding="utf-8") as f:
reqs = f.read()
except:
print("fuck")
pkgs = [p for p in find_packages() if p.startswith("xingyun")]
setup(
name="xingyun",
version="0.0.8-post15",
url="http://github.com/FFTYYY/XingYun",
description="",
long_description=readme,
long_description_content_type="text/markdown",
license="MIT",
author = "Yongyi Yang",
author_email = "[email protected]",
python_requires = ">=3.10",
packages = pkgs,
install_requires = reqs.strip().split("\n"),
include_package_data = True ,
)