forked from adamerose/PandasGUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.14 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
43
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.13",
description="A GUI for Pandas DataFrames.",
author="Adam Rose",
author_email="adrotog@gmail.com",
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",
"numpy",
"PyQt5",
"PyQt5-sip",
"PyQtWebEngine",
"plotly",
"wordcloud",
"setuptools",
"appdirs",
"pynput",
"IPython",
"pyarrow",
"astor",
"typing-extensions",
"qtstylish>=0.1.2",
"pywin32; platform_system=='Windows'"
],
entry_points={
"gui_scripts": [
"pandasgui = pandasgui.run_with_args:main"
]
},
)