-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 879 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
#!/usr/bin/env python3
from setuptools import setup
long_description = "Package to interface with module-based (modified) suite2p by Georgios Keliris."
setup(
name='gks2p',
version='0.1.1',
description="Interface with module-based suite2p.",
long_description=long_description,
author='Georgios A. Keliris',
author_email='[email protected]',
license='MIT',
url='https://github.com/gkeliris/gks2p',
keywords='suite2p module-based gks2p',
packages=['gks2p'],
install_requires=['tifffile', 'natsort'],
classifiers=[
'Development Status :: 1 - Alpha',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: MIT License',
'Natural Language :: English'
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
)