bugfix
This commit is contained in:
parent
4207f2c4bb
commit
b1f3df862d
8
setup.py
8
setup.py
@ -18,6 +18,11 @@ description = "ahserver"
|
|||||||
author = "yumoqing"
|
author = "yumoqing"
|
||||||
email = "yumoqing@gmail.com"
|
email = "yumoqing@gmail.com"
|
||||||
|
|
||||||
|
required = []
|
||||||
|
with open('requirements.txt', 'r') as f:
|
||||||
|
ls = f.read()
|
||||||
|
required = ls.split('\n')
|
||||||
|
|
||||||
packages=find_packages()
|
packages=find_packages()
|
||||||
package_data = {}
|
package_data = {}
|
||||||
|
|
||||||
@ -32,8 +37,7 @@ setup(
|
|||||||
author=author,
|
author=author,
|
||||||
author_email=email,
|
author_email=email,
|
||||||
|
|
||||||
install_requires=[
|
install_requires=required,
|
||||||
],
|
|
||||||
packages=packages,
|
packages=packages,
|
||||||
package_data=package_data,
|
package_data=package_data,
|
||||||
keywords = [
|
keywords = [
|
||||||
|
Loading…
Reference in New Issue
Block a user