-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (25 loc) · 695 Bytes
/
setup.py
File metadata and controls
31 lines (25 loc) · 695 Bytes
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
#!/usr/bin/env python
# Install script for labdaq.
# Joao Couto - July 2020
import os
from os.path import join as pjoin
from setuptools import setup
from setuptools.command.install import install
longdescription = ''' DAQ IO and simple ephys.'''
data_path = pjoin(os.path.expanduser('~'), '.labdaq')
setup(
name = 'labdaq',
version = '0.0',
author = 'Joao Couto',
author_email = 'jpcouto@gmail.com',
description = (longdescription),
long_description = longdescription,
license = 'GPL',
packages = ['labdaq'],
entry_points = {
'console_scripts': [
'labdaq = labdaq.gui:main',
'labdaq-sealtest = labdaq.gui:sealtest',
]
},
)