Skip to content

Commit

Permalink
Merge pull request #603 from wright-group/development
Browse files Browse the repository at this point in the history
3.0.3
  • Loading branch information
untzag authored Jun 2, 2018
2 parents a802aba + e8b3882 commit f60124a
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 41 deletions.
2 changes: 1 addition & 1 deletion WrightTools/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.2
3.0.3
12 changes: 1 addition & 11 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1 @@
# from conda: conda create -n wrighttools --file requirements.txt
# from pip: pip install -r requirements.txt
h5py>=2.7.0
imageio
matplotlib>=2.0
numexpr
numpy
python-dateutil
pytz
scipy
tidy_headers
.
80 changes: 51 additions & 29 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,39 +11,61 @@ def read(fname):
return open(os.path.join(here, fname)).read()


extra_files = {'WrightTools': ['datasets', 'datasets/*', 'datasets/*/*', 'datasets/*/*/*',
'datasets/*/*/*/*', 'VERSION', 'WT5_VERSION']}
extra_files = {
"WrightTools": [
"datasets",
"datasets/*",
"datasets/*/*",
"datasets/*/*/*",
"datasets/*/*/*/*",
"VERSION",
"WT5_VERSION",
]
}

with open(os.path.join(here, 'requirements.txt')) as f:
required = f.read().splitlines()

with open(os.path.join(here, 'WrightTools', 'VERSION')) as version_file:
with open(os.path.join(here, "WrightTools", "VERSION")) as version_file:
version = version_file.read().strip()

setup(
name='WrightTools',
packages=find_packages(exclude=('tests', 'tests.*')),
name="WrightTools",
packages=find_packages(exclude=("tests", "tests.*")),
package_data=extra_files,
python_requires='>=3.5',
setup_requires=['pytest-runner'],
tests_require=['pytest', 'pytest-cov',
'sphinx==1.6.5', 'sphinx-gallery==0.1.12', 'sphinx-rtd-theme'],
install_requires=required,
extras_require={'docs': ['sphinx-gallery==0.1.12']},
python_requires=">=3.5",
setup_requires=["pytest-runner"],
tests_require=[
"pytest",
"pytest-cov",
"sphinx==1.6.5",
"sphinx-gallery==0.1.12",
"sphinx-rtd-theme",
],
install_requires=[
"h5py",
"imageio",
"matplotlib>=2.0",
"numexpr",
"numpy",
"python-dateutil",
"pytz",
"scipy",
"tidy_headers",
],
extras_require={"docs": ["sphinx-gallery==0.1.12"]},
version=version,
description='Tools for loading, processing, and plotting multidimensional spectroscopy data.',
long_description=read('README.rst'),
author='WrightTools Developers',
license='MIT',
url='http://wright.tools',
keywords='spectroscopy science multidimensional visualization',
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
]
description="Tools for loading, processing, and plotting multidimensional spectroscopy data.",
long_description=read("README.rst"),
author="WrightTools Developers",
license="MIT",
url="http://wright.tools",
keywords="spectroscopy science multidimensional visualization",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering",
],
)

0 comments on commit f60124a

Please sign in to comment.