forked from ArsenyFinkelsteinLab/DJ_cloud
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (27 loc) · 948 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
32
from setuptools import setup, find_packages
from os import path
pkg_name = 'workflow'
here = path.abspath(path.dirname(__file__))
long_description = """"
DataJoint data workflow for ArsenyFinkelstein Lab
"""
with open(path.join(here, 'requirements.txt')) as f:
requirements = f.read().splitlines()
with open(path.join(here, pkg_name, 'version.py')) as f:
exec(f.read())
setup(
name='finkelstein-lab',
version=__version__,
description="DataJoint data workflow for ArsenyFinkelsteinLab",
long_description=long_description,
author='Arseny Finkelstein Lab',
author_email='[email protected]',
license='MIT',
url='https://github.com/ArsenyFinkelsteinLab/DJ_cloud',
keywords='neuroscience datajoint',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=requirements,
entry_points={
'console_scripts': ['run_workflow=workflow.populate.process:cli'],
}
)