-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 879 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
#
# _ _ _
# | |__ _ ___ _(_) __| | ___ ___
# | '_ \| | | \ \ / / |/ _` |/ _ \/ _ \
# | | | | |_| |\ V /| | (_| | __/ (_) |
# |_| |_|\__, | \_/ |_|\__,_|\___|\___/
# |___/
#
# Maintained by the mage.space team.
# Thank you to the Tencent team.
from setuptools import setup, find_packages
# Read the contents of requirements.txt file
with open("requirements.txt") as f:
required = f.read().splitlines()
# Read the contents of strict requirements.txt file
with open("requirements-strict.txt") as f:
required_strict = f.read().splitlines()
setup(
name="hyvideo",
version="0.1.0",
packages=find_packages(),
license=open("LICENSE.txt").read(),
long_description=open("README.md").read(),
install_requires=required,
extras_require={
"strict": required_strict,
},
)