-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
28 lines (23 loc) · 824 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from setuptools.command.develop import develop
class run_post_develop(develop):
def run(self):
develop.run(self)
from cc_drift_cor.plugins import install_plugin
install_plugin.main()
setup(name='cc_drift_cor',
version='0.1',
description='cross correlation based drift correction',
author='Kenny Chung',
author_email='kenny.chung@yale.edu',
url='https://github.com/kkhchung/cross-correlation-drift-correction',
packages=find_packages(),
# package_data={
# # include all svg and html files, otherwise conda will miss them
# '': ['*.svg', '*.html'],
# }
cmdclass = {
'develop': run_post_develop,
},
)