You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
465 B
Python
24 lines
465 B
Python
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='abedeto',
|
|
version='2.0',
|
|
author='The Abedeto Developers',
|
|
maintainer='Sebastian Heimann',
|
|
maintainer_email='sebastian.heimann@uni-potsdam.de',
|
|
license='AGPLv3',
|
|
package_dir={
|
|
'abedeto': 'src'
|
|
},
|
|
packages=[
|
|
'abedeto',
|
|
],
|
|
install_requires=[
|
|
'pyrocko>2022.11.29',
|
|
],
|
|
entry_points={
|
|
'console_scripts': ['abedeto = abedeto.app:main']
|
|
}
|
|
)
|