-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (42 loc) · 1.44 KB
/
setup.py
File metadata and controls
44 lines (42 loc) · 1.44 KB
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
39
40
41
42
43
44
from setuptools import setup, find_packages
with open('README.rst', 'r') as fh:
long_desc = fh.read()
setup(name='ytree_data_worker',
version='0.1.0',
description='Query information using ytree',
long_description=long_desc,
author='Matthew Turk',
author_email='matthewturk@gmail.com',
license='MIT license',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Programming Language :: Python'
],
install_requires=[
'girder_worker',
'girder_worker_utils'
# TODO: Add additional packages required by both
# producer and consumer side installations
],
extras_require={
'girder': [
# TODO: Add dependencies here that are required for the
# package to work on the producer (Girder) side.
],
'worker': [
# TODO: Add dependencies here that are required for the
# package to work on the consumer (Girder Worker) side.
]
},
include_package_data=True,
entry_points={
'girder_worker_plugins': [
'ytree_data_worker = ytree_data_worker:YtreeDataWorker',
]
},
packages=find_packages(),
zip_safe=False)