-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (31 loc) · 1.15 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
import setuptools
setuptools.setup(
name="metasub-scripts",
version="0.9.0",
url="https://github.com/MetaSUB/metasub-scripts",
author="David C. Danko",
author_email="[email protected]",
description="Scripts for various metasub related things",
packages=['airtablesync'],
package_dir={'airtablesync': 'airtablesync'},
install_requires=[
'click==6.7'
],
entry_points={
'console_scripts': [
'airtable-sync=airtablesync.airtable_uploader:main',
'cbind-tables=airtablesync.cbind_tables:main',
'parse-plate-files=inbound_outbound_parsing.cli:main',
'parse-qiagen-files=inbound_outbound_parsing.parse_qiagen:main',
'airtable-upload-plate-files=inbound_outbound_parsing.airtable_upload:main',
'airtable-upload-rack-status=airtablesync.upload_rack_status_to_airtable:main'
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)