-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
executable file
·35 lines (33 loc) · 1.12 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
import sys
from setuptools import setup
import setuptools
if sys.version_info < (3, 6):
sys.exit('Sorry, panoptes requires Python >= 3.6')
setup(
name='panoptes-ui',
version='0.2.3',
url='https://github.com/panoptes-organization/panoptes',
license='MIT',
author='panoptes-organization',
description="panoptes: monitor computational workflows in real time",
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
entry_points={
'console_scripts': ['panoptes=panoptes:main'],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"flask >= 1.1.1",
"humanfriendly >= 4.18",
"marshmallow >= 3.0.1",
"pytest >= 5.3.0",
"requests >= 2.22.0",
"SQLAlchemy >= 1.3.7",
],
include_package_data=True,
)