Python CLI utility to perform various tasks related to EVE KSpace navigation/path optimization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
258 B

from setuptools import setup
setup(
name='eve-pymap',
version='0.1',
py_modules=['eve-pymap'],
install_requires=[
'Click',
'requests'
],
entry_points='''
[console_scripts]
eveMap=eveMap:cli
''',
)