Skip to content
Snippets Groups Projects
Commit 2031d229 authored by ArktikHunter's avatar ArktikHunter
Browse files

renamed to pydtnsim

parent b73a9a84
No related branches found
No related tags found
1 merge request!21pydtn agkmeans and version 1.0
Pipeline #10913 failed
......@@ -5,7 +5,7 @@ from os import path
def extract_version():
"""Extract version function."""
with open(path.join('pydtn', '__init__.py')) as f:
with open(path.join('pydtnsim', '__init__.py')) as f:
for line in f:
if line.startswith('__version__'):
return line.split('"')[1]
......@@ -16,9 +16,9 @@ def extract_requirements():
return f.read().split('\n')
if __name__ == "__main__":
setup(name='pydtn',
setup(name='pydtnsim',
description='A delay tolerant network simulator.',
packages=['pydtn'],
packages=['pydtnsim'],
version=extract_version(),
install_requires=extract_requirements(),
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment