forked from adamerose/PandasGUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 893 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
setup(
name="pandasgui",
version="0.2.7",
description="A GUI for Pandas DataFrames.",
author="Adam Rose",
author_email="[email protected]",
url="https://github.com/adamerose/pandasgui",
packages=find_packages(),
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown",
exclude_package_data={'': ['.gitignore']},
# Using this instead of MANIFEST.in - https://pypi.org/project/setuptools-git/
setup_requires=['setuptools-git'],
install_requires=[
"pandas",
"PyQt5",
"PyQt5-sip",
"PyQtWebEngine",
"plotly",
"setuptools",
"appdirs",
"dacite",
"pynput",
"IPython"
],
)