Skip to content

Commit

Permalink
Bump version, use find_packages
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnoe committed Nov 27, 2018
1 parent 9395a78 commit fddcbd2
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
from setuptools import setup
from setuptools import setup, find_packages

setup(
name='eventio',
version='0.3.0',
version='0.4.0',
description='Python read-only implementation of the EventIO file format',
url='https://github.com/fact-project/pyeventio',
author='Dominik Neise, Maximilian Noethe',
author_email='[email protected]',
license='MIT',
packages=[
'eventio',
'eventio.iact',
],
packages=find_packages(),
package_data={'eventio': ['resources/*']},
install_requires=[
'numpy'
Expand Down

0 comments on commit fddcbd2

Please sign in to comment.