remove requirements.txt
This commit is contained in:
parent
36c8ddd536
commit
2dca5338ec
@ -5,7 +5,7 @@ ENV v6host=0.0.0.0
|
|||||||
EXPOSE 5910
|
EXPOSE 5910
|
||||||
ENV v6port=5910
|
ENV v6port=5910
|
||||||
ENV v6root=/v6data
|
ENV v6root=/v6data
|
||||||
COPY requirements.txt requirements.txt
|
COPY v6d1tokens dist/v6d1tokens
|
||||||
RUN pip install -r requirements.txt
|
COPY setup.py dist/setup.py
|
||||||
COPY v6d1tokens v6d1tokens
|
RUN pip install -e dist/.
|
||||||
CMD ["python3", "-m", "v6d1tokens.run-server"]
|
CMD ["python3", "-m", "v6d1tokens.run-server"]
|
||||||
|
@ -1,4 +0,0 @@
|
|||||||
aiohttp
|
|
||||||
PyNaCl~=1.4.0
|
|
||||||
ptvp35 @ git+https://gitea.ongoteam.net/PTV/ptvp35.git@25727aabd7afd69f66051c806190480302e67260
|
|
||||||
v6d0auth @ git+https://gitea.ongoteam.net/PTV/v6d0auth.git@7f910ba91be2564a9f78bcfa39759698f3ebf85f
|
|
12
setup.py
12
setup.py
@ -1,10 +1,5 @@
|
|||||||
from pathlib import Path
|
|
||||||
|
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
with open(Path(__file__) / '../requirements.txt') as f:
|
|
||||||
install_requires = f.read().strip().split('\n')
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='v6d1tokens',
|
name='v6d1tokens',
|
||||||
version='',
|
version='',
|
||||||
@ -14,5 +9,10 @@ setup(
|
|||||||
author='PARRRATE T&V',
|
author='PARRRATE T&V',
|
||||||
author_email='',
|
author_email='',
|
||||||
description='',
|
description='',
|
||||||
install_requires=install_requires
|
install_requires=[
|
||||||
|
'aiohttp',
|
||||||
|
'PyNaCl~=1.4.0',
|
||||||
|
'ptvp35 @ git+https://gitea.ongoteam.net/PTV/ptvp35.git@25727aabd7afd69f66051c806190480302e67260',
|
||||||
|
'v6d0auth @ git+https://gitea.ongoteam.net/PTV/v6d0auth.git@20a8c7a4f67d193e193f3862f1019976343ad711'
|
||||||
|
]
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user