Fix name
This commit is contained in:
parent
2e1334ff99
commit
918224d5f4
5 changed files with 4 additions and 4 deletions
|
@ -5,7 +5,7 @@ WORKDIR /usr/src/app
|
||||||
COPY requirements.txt ./
|
COPY requirements.txt ./
|
||||||
RUN pip install --no-cache-dir -r requirements.txt
|
RUN pip install --no-cache-dir -r requirements.txt
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN python3 setup.py /usr/src/app/install
|
RUN pip install .
|
||||||
|
|
||||||
# CMD [ "python", "./your-daemon-or-script.py" ]
|
# CMD [ "python", "./your-daemon-or-script.py" ]
|
||||||
CMD [ "sh" ]
|
CMD [ "sh" ]
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
[metadata]
|
[metadata]
|
||||||
name = discover-mastodon-servers
|
name = discover_mastodon_servers
|
||||||
version = 0.0.1
|
version = 0.0.1
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
packages = discover-mastodon-servers
|
packages = discover_mastodon_servers
|
||||||
install_requires =
|
install_requires =
|
||||||
requests
|
requests
|
||||||
importlib; python_version == "3.10"
|
importlib; python_version == "3.10"
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -9,7 +9,7 @@ config = configparser.ConfigParser()
|
||||||
config.read('setup.cfg')
|
config.read('setup.cfg')
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
scripts=['discover-mastodon-servers/discover-mastodon-servers.py'],
|
scripts=['discover_mastodon_servers/discover_mastodon_servers.py'],
|
||||||
author="Antonio J. Delgado",
|
author="Antonio J. Delgado",
|
||||||
version=config['metadata']['version'],
|
version=config['metadata']['version'],
|
||||||
name=config['metadata']['name'],
|
name=config['metadata']['name'],
|
||||||
|
|
Loading…
Reference in a new issue