-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (42 loc) · 2.11 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
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
from os import path
import glob
here = path.abspath(path.dirname(__file__))
from get_version import get_version
__version__ = get_version(__file__)
del get_version
# Get the long description from the README file
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
setup(name='vfb_connect', # Required
version=__version__, # Required
packages=find_packages(where='src'),
package_dir={'': 'src'},
py_modules=[path.splitext(path.basename(path))[0] for path in glob.glob('src/*.py')],
include_package_data=True,
description='Wrapper for querying VirtualFlyBrain servers.', # Optional)
long_description=long_description,
long_description_content_type='text/markdown',
author='David Osumi-Sutherland', # Optional
url='https://github.com/VirtualFlyBrain/VFB_connect',
# This should be a valid email address corresponding to the author listed
# above.
author_email='[email protected]', # Optional
install_requires=['requests', 'pandas', 'jsonpath_rw', 'pysolr', 'navis', 'flybrains', 'numpy>=1.26.4, <2.0.0', 'neuprint-python', 'python-catmaid', 'matplotlib>3.9', 'seaborn>0.13', 'colormath', 'tqdm', 'vispy', 'ipywidgets'],
data_files=[('json_schema', ['src/vfb_connect/resources/VFB_TermInfo_queries.json','src/vfb_connect/resources/VFB_results_single_input.json','src/vfb_connect/resources/VFB_results_multi_input.json'])],
classifiers=[ # Optional
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
],
project_urls={ # Optional
'Bug Reports': 'https://github.com/VirtualFlyBrain/VFB_connect/issues',
'Source': 'https://github.com/VirtualFlyBrain/VFB_connect',
'Documentation': 'https://vfb-connect.readthedocs.io/en/stable/'
},
)