-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (26 loc) · 1.04 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
from setuptools import find_packages, setup
setup(name='excel2flapjack',
version='1.0.5',
url='https://github.com/SynBioDex/Experimental-Data-Converter/',
license='BSD 3-clause',
include_package_data=True,
description='upload excel resources to flapjack',
packages=find_packages(where="src"),
package_dir={"":"src"},
long_description=open('README.md').read(),
install_requires=['pyflapjack>=1.0.5',
'numpy>=1.21.2',
'scipy>=1.8.0',
'pandas>=1.3.3',
'requests>=2.26.0',
'tqdm>=4.62.3',
'plotly>=5.3.1',
'asyncio>=3.4.3',
'nest_asyncio>=1.5.1',
'requests_jwt>=0.5.3',
'websockets>=10.0',
'matplotlib>=3.4.3',
'kaleido>=0.2.1',
'openpyxl>=3.0.9'
],
zip_safe=False)