forked from uvemas/ViTables
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Packaging related files have been updated.
- Loading branch information
Showing
5 changed files
with
76 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
include *.pro *.txt *.ts VERSION | ||
recursive-include vitables *.ico *.ini *.png *.qm *.svg *.ui | ||
include *.pro *.ts *.txt *.yml VERSION | ||
recursive-include vitables *.ico *.ini *.png *.qm *.svg *.ui *.html *.css *.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.2.2 | ||
2.2.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ Cython | |
numexpr | ||
numpy | ||
tables | ||
PyQt4 | ||
PyQt5 | ||
QtPy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,70 +1,69 @@ | ||
# Copyright (C) 2005-2007 Carabos Coop. V. All rights reserved | ||
# Copyright (C) 2008-2017 Vicent Mas. All rights reserved | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
# | ||
# Author: Vicent Mas - [email protected] | ||
|
||
""" | ||
Setup script for the vitables package. | ||
""" | ||
|
||
import os | ||
from setuptools import setup, find_packages | ||
|
||
# Utility function to read the README file. | ||
def read(fname): | ||
return open(os.path.join(os.path.dirname(__file__), fname)).read() | ||
|
||
setup(name='ViTables', | ||
version=read('VERSION'), | ||
description='A viewer for PyTables package', | ||
long_description=read('README.txt'), | ||
author='Vicent Mas', | ||
author_email='[email protected]', | ||
maintainer='Alexey Naydenov', | ||
maintainer_email='[email protected]', | ||
url='http://www.vitables.org', | ||
license='GPLv3, see the LICENSE.txt file for detailed info', | ||
platforms='Unix, MacOSX, Windows', | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Environment :: X11 Applications', | ||
'Environment :: MacOS X', | ||
'Environment :: Win32 (MS Windows)', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | ||
'Operating System :: POSIX', | ||
'Programming Language :: Python', | ||
'Topic :: Scientific/Engineering' | ||
], | ||
requires=['qtpy (>=1.2.1)', 'numpy (>=1.4.1)', 'numexpr (>=2.0)', | ||
'tables (>=3.0)'], | ||
entry_points={ | ||
'gui_scripts': ['vitables = vitables.start:gui'], | ||
'vitables.plugins': | ||
[('columnar_org = ' | ||
'vitables.plugins.columnorg.columnar_org:ArrayColsOrganizer'), | ||
('import_csv = ' | ||
'vitables.plugins.csv.import_csv:ImportCSV'), | ||
('export_csv = ' | ||
'vitables.plugins.csv.export_csv:ExportToCSV'), | ||
('dbs_tree_sort = ' | ||
'vitables.plugins.dbstreesort.dbs_tree_sort:DBsTreeSort'), | ||
('time_series = ' | ||
'vitables.plugins.timeseries.time_series:TSFormatter')] | ||
}, | ||
packages=find_packages(), | ||
include_package_data=True, | ||
package_data={'vitables': ['LICENSE.html']}, | ||
) | ||
# Copyright (C) 2005-2007 Carabos Coop. V. All rights reserved | ||
# Copyright (C) 2008-2017 Vicent Mas. All rights reserved | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
# | ||
# Author: Vicent Mas - [email protected] | ||
|
||
""" | ||
Setup script for the vitables package. | ||
""" | ||
|
||
import os | ||
from setuptools import setup, find_packages | ||
|
||
# Utility function to read the README file. | ||
def read(fname): | ||
return open(os.path.join(os.path.dirname(__file__), fname)).read() | ||
|
||
setup(name='ViTables', | ||
version=read('VERSION'), | ||
description='A viewer for PyTables package', | ||
long_description=read('README.txt'), | ||
author='Vicent Mas', | ||
author_email='[email protected]', | ||
maintainer='Alexey Naydenov', | ||
maintainer_email='[email protected]', | ||
url='http://vitables.org', | ||
license='GPLv3, see the LICENSE.txt file for detailed info', | ||
keywords='HDF5 PyTables', | ||
platforms='Unix, MacOSX, Windows', | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Environment :: X11 Applications', | ||
'Environment :: MacOS X', | ||
'Environment :: Win32 (MS Windows)', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | ||
'Operating System :: POSIX', | ||
'Programming Language :: Python', | ||
'Topic :: Scientific/Engineering' | ||
], | ||
requires=['qtpy (>=1.2.1)', 'numpy (>=1.4.1)', 'numexpr (>=2.0)', | ||
'tables (>=3.0)'], | ||
entry_points={ | ||
'gui_scripts': ['vitables = vitables.start:gui'], | ||
'vitables.plugins': | ||
[('columnar_org = ' | ||
'vitables.plugins.columnorg.columnar_org:ArrayColsOrganizer'), | ||
('import_csv = ' | ||
'vitables.plugins.csv.import_csv:ImportCSV'), | ||
('export_csv = ' | ||
'vitables.plugins.csv.export_csv:ExportToCSV'), | ||
('dbs_tree_sort = ' | ||
'vitables.plugins.dbstreesort.dbs_tree_sort:DBsTreeSort'), | ||
('time_series = ' | ||
'vitables.plugins.timeseries.time_series:TSFormatter')] | ||
}, | ||
packages=find_packages(), | ||
) |