-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 887 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup
setup(
name='ep-lt28ga-subplate-fit',
version='0.0.1',
description='surface_fit wrapper',
author='Jennings Zhang',
author_email='[email protected]',
url='https://github.com/FNNDSC/ep-lt28ga-subplate-fit',
py_modules=['lt28ga_surface_fit'],
scripts=['surface_fit_script.pl'],
install_requires=['chris_plugin'],
license='MIT',
entry_points={
'console_scripts': [
'lt28ga_surface_fit = lt28ga_surface_fit:main'
]
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Medical Science Apps.'
],
extras_require={
'none': [],
'dev': [
'pytest~=7.1'
]
}
)