Skip to content

Commit

Permalink
Fix missing metadata from source distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
tritemio committed Jan 19, 2018
1 parent 70e2d9f commit fd8978f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages
import versioneer

project_name = 'phconvert'
Expand Down Expand Up @@ -27,8 +27,6 @@
author_email = '[email protected]',
url = 'http://photon-hdf5.github.io/phconvert/',
download_url = 'http://photon-hdf5.github.io/phconvert/',
install_requires = ['numpy', 'setuptools', 'tables', 'future'],
include_package_data=True,
license = 'MIT',
description = ("Convert Beker&Hickl, PicoQuant and other formats to Photon-HDF5."),
long_description = long_description,
Expand All @@ -39,10 +37,12 @@
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
],
packages = ['phconvert', 'phconvert.v04'],
package_data = {'phconvert': ['specs/*.json', 'v04/specs/*.json']},
install_requires = ['numpy', 'setuptools', 'tables', 'future'],
packages=find_packages('.'),
package_data = {'': ['*.json', 'v04/specs/*.json']},
keywords = ('single-molecule FRET smFRET biophysics file-format HDF5 '
'Photon-HDF5'),
)

0 comments on commit fd8978f

Please sign in to comment.