Skip to content

Commit

Permalink
Packaging related files have been updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
uvemas committed May 24, 2017
1 parent 6b82113 commit 50c1e54
Show file tree
Hide file tree
Showing 5 changed files with 76 additions and 74 deletions.
2 changes: 2 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
ViTables ChangeLog
==================
** May 24, 2017 **
Packaging related files have been updated.

The Users' Guide has been updated.

Some .txt files have been updated.
Expand Down
4 changes: 2 additions & 2 deletions MANIFEST.in
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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.2
2.2.2
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ Cython
numexpr
numpy
tables
PyQt4
PyQt5
QtPy
139 changes: 69 additions & 70 deletions setup.py
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(),
)

0 comments on commit 50c1e54

Please sign in to comment.