-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (40 loc) · 1.3 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
41
42
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="jupyter_Pandas_GUI",
version="0.9.0",
description="Pandas expression composers using Jupyter widgets.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://jupyterphysscilab.github.io/jupyter_Pandas_GUI/",
author="Jonathan Gutow",
author_email="[email protected]",
keywords="fitting, data-analysis, plotting, learning to code",
license="GPL-3.0+",
packages=setuptools.find_packages(),
package_data={},
include_package_data=True,
install_requires=[
# 'python>=3.6',
'jupyter>=1.0.0',
'jupyterlab>=4.1.5',
'pandas>=1.5.2',
'numpy>=1.23.0',
'plotly>=5.5.0',
'kaleido',
'ipywidgets>=7.6.2',
'JPSLUtils>=0.7.0',
'lmfit>=1.1.0',
'round-using-error>=1.2.0',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: JavaScript',
'Operating System :: OS Independent'
]
)