-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
71 lines (60 loc) · 1.91 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env python
from setuptools import setup
from setuptools.command.install import install as _install
class install(_install):
def pre_install_script(self):
pass
def post_install_script(self):
pass
def run(self):
self.pre_install_script()
_install.run(self)
self.post_install_script()
if __name__ == '__main__':
setup(
name = 'meso_tools',
version = '0.1.0',
description = 'tools to access and manipulate 2-photon data ',
long_description = 'Simple tools to load and process mesoscope data',
author = 'Natalia Orlova',
author_email = '[email protected]',
license = '',
url = 'https://github.com/nataliaorlova/meso_tools',
scripts = [],
packages = [
'meso_tools',
],
namespace_packages = [],
py_modules = [
# '2p_tools', <- these are single files
],
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python'
],
entry_points = {
#'console_scripts': ['mouse_director=mousedirector:main'] <--- if you want to create exes
},
data_files = [], # these are non-python files but you almost never want this
package_data = {},
install_requires = [ # your requirements
'tifffile',
'h5py',
'numpy',
'scipy',
'matplotlib',
'scikit-image',
'pandas',
'psycopg2',
'glob',
'sciris',
'scikit-image',
'scipy',
'allensdk==2.11.3'],
dependency_links = [],
zip_safe = True,
cmdclass = {'install': install},
keywords = '',
python_requires = '',
obsoletes = [],
)