-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
40 lines (32 loc) · 1.76 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
# -*- coding: utf-8 -*-
# DO NOT EDIT THIS FILE!
# This file has been autogenerated by dephell <3
# https://github.com/dephell/dephell
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os.path
readme = ''
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, 'README.rst')
if os.path.exists(readme_path):
with open(readme_path, 'rb') as stream:
readme = stream.read().decode('utf8')
setup(
long_description=readme,
name='fn_graph_studio',
version='0.10.5',
description='A web based explorer for fn_graph function composers',
python_requires='==3.*,>=3.7.0',
project_urls={"documentation": "https://fn-graph.readthedocs.io/", "homepage": "https://github.com/BusinessOptics/fn_graph_studio", "repository": "https://github.com/BusinessOptics/fn_graph_studio"},
author='James Saunders',
author_email='[email protected]',
license='MIT',
entry_points={"console_scripts": ["fn_graph_studio = fn_graph_studio.cli:cli"]},
packages=['fn_graph_studio'],
package_dir={"": "."},
package_data={"fn_graph_studio": ["*.css", "assets/*.ico"]},
install_requires=['dash==1.*,>=1.10.0', 'dash-ace-persistent==0.*,>=0.3.4', 'dash-core-components==1.*,>=1.0.0', 'dash-cytoscape==0.*,>=0.1.1', 'dash-dangerously-set-inner-html==0.*,>=0.0.2', 'dash-interactive-graphviz==0.*,>=0.2.0', 'dash-split-pane==1.*,>=1.0.0', 'dash-treebeard==0.*,>=0.0.1', 'fn-graph[examples]', 'matplotlib==3.*,>=3.2.1', 'networkx==2.*,>=2.4.0', 'pandas>=0.25.3', 'plotly==4.*,>=4.0.0', 'pygments==2.*,>=2.6.1', 'seaborn==0.*,>=0.10.0', 'sh==1.*,>=1.0.0', 'statsmodels==0.*,>=0.11.1'],
extras_require={"dev": ["black==18.*,>=18.3.0.a0", "pylint==2.*,>=2.5.2", "rope==0.*,>=0.17.0"]},
)