-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (40 loc) · 1.26 KB
/
setup.py
File metadata and controls
44 lines (40 loc) · 1.26 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
from os import path
here = path.abspath(path.dirname(__file__))
__version__ = "1.6.13"
# Get the long description from the README file
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
setup(
name="vfbquery",
version=__version__,
description="Wrapper for querying VirtualFlyBrain knowledge graph.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/VirtualFlyBrain/VFBquery",
author="VirtualFlyBrain",
license="GPL-3.0 License",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
package_dir={'': 'src'},
packages=find_packages(where='src'),
include_package_data=True,
install_requires=[
"pysolr",
"pandas",
"marshmallow",
"vfb_connect",
"aiohttp",
"dataclasses-json",
"dacite",
"requests",
],
python_requires=">=3.7",
project_urls={ # Optional
'Bug Reports': 'https://github.com/VirtualFlyBrain/VFBquery/issues',
'Source': 'https://github.com/VirtualFlyBrain/VFBquery'
},
)