-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsetup.py
40 lines (38 loc) · 1.65 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
from setuptools import setup
import sys,os
home=os.path.expanduser('~')
with open('description.txt') as f:
long_description = f.read()
setup(
name = 'tablexplore',
version = '0.5.1',
description = 'Table analysis and plotting application written in PySide2/PyQt5',
long_description = long_description,
url='https://github.com/dmnfarrell/tablexplore',
license='GPL v3',
author = 'Damien Farrell',
author_email = 'farrell.damien@gmail.com',
packages = ['tablexplore'],
package_data={'tablexplore': ['logo.png', 'logo.svg', '../description.txt',
'styles/*.qss','icons/*.png',
'plugins/*.py','plugins/icons/*.png',
'datasets/*.csv']},
install_requires=['matplotlib>=3.0',
'pandas>=1.1',
'PySide2', #comment out for snap building
'xlrd>=1.0',
'openpyxl'
],
entry_points = { 'gui_scripts': [
'tablexplore = tablexplore.app:main']},
classifiers = ['Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Topic :: Software Development :: User Interfaces',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research'],
keywords = ['spreadsheet', 'table', 'pandas', 'data analysis', 'qt'],
)