forked from datajoint/djarchive-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (24 loc) · 848 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
#! /usr/bin/env python
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
long_description = '''
DJArchive-Client: datajoint.io data publication/archive client library.
see README for further information.
'''
with open(path.join(here, 'requirements.txt')) as f:
requirements = [r.rstrip().split('#')[0].rstrip() for r in f]
setup(
name='djarchive-client',
version='0.0.1',
description='DataJoint data archive client',
long_description=long_description,
author='Vathes, Inc.',
author_email='[email protected]',
license='All Rights Reserved',
url='https://github.com/datajoint/djarchive-client',
keywords='DataJoint MySQL',
install_requires=requirements,
packages=find_packages(exclude=['doc', 'test']),
scripts=['scripts/djarchive']
)