-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 1.06 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
from setuptools import setup, find_packages
VERSION = '0.2.0'
setup(
name='harrier',
description='harrier - touch screen image targeting',
long_description='',
author='Andrew E. Bruno',
url='https://github.com/ubccr/harrier',
license='GNU General Public License v3 (GPLv3)',
author_email='[email protected]',
version=VERSION,
include_package_data=True,
zip_safe=False,
packages=find_packages(exclude=['tests*']),
install_requires=[
'Flask',
'Flask-SQLAlchemy',
'Flask-Script',
'Flask-WTF',
'Marshmallow',
],
entry_points='''
[console_scripts]
harrier=harrier.manage.manager:main
''',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Scientific/Engineering :: Bio-Informatics',
]
)