Skip to content

Commit

Permalink
clean up setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tianluyuan committed Apr 12, 2018
1 parent 0121863 commit b896c81
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 10 deletions.
3 changes: 0 additions & 3 deletions MANIFEST.in

This file was deleted.

2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[aliases]
test=pytest
22 changes: 15 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python

from distutils.core import setup
from setuptools import setup, find_packages

setup(
name='nuVeto',
Expand All @@ -9,10 +9,18 @@
author_email='[email protected], [email protected], [email protected], [email protected], and [email protected]',
description='Package implements the formalism for calculating passing fraction as discussed in arXiv:XXXX.XXXX.',
long_description=open('README.md').read(),
url='https://github.com/arguelles/SelfVeto.git',
packages=['nuVeto','nuVeto.external'],
package_dir={'nuVeto': 'nuVeto'},
package_data={'nuVeto':["data/decay_distributions/*.npz",'data/prpl/*.pkl','data/corsika/*.pkl']},
#data_files={'nuVeto':["data/decay_distributions/*.npz",'data/prpl/*.pkl','data/corsika/*.pkl']},
requires=['numpy', 'scipy', 'functools32', 'matplotlib', 'MCeq']
url='https://github.com/arguelles/nuVeto.git',
packages=find_packages('./'),
package_data={
'nuVeto':['data/decay_distributions/*.npz','data/prpl/*.pkl','data/corsika/*.pkl']
},
install_requires=[ 'numpy',
'scipy',
'functools32',
'MCeq'],
extras_require={
'plotting': ['matplotlib'],
},
setup_requires=['pytest-runner'],
tests_require=['pytest']
)

0 comments on commit b896c81

Please sign in to comment.