-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (18 loc) · 731 Bytes
/
setup.py
File metadata and controls
23 lines (18 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name='vfb_curation_api',
version='1.0.0',
description='An API that encapsulates curation processes of the Virtual Flybrain Project',
url='https://github.com/VirtualFlyBrain/vfb_curation_api',
author='Nicolas Matentzoglu',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Virtual Fly Brain',
'License :: Apache License Version 2.0',
'Programming Language :: Python :: 3.6',
],
keywords='rest flask swagger flask-restplus virtual-fly-brain',
packages=find_packages(),
install_requires=['flask-restplus==0.13', 'Flask-SQLAlchemy==2.4.1'],
)