Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def read(*filenames, **kwargs):
encoding = kwargs.get('encoding', 'utf-8')
sep = kwargs.get('sep', '\n')
buf = []
for filename in filenames:
with io.open(filename, encoding=encoding) as f:
buf.append(f.read())
return sep.join(buf)
long_description = read('README.md')
setup(
name='pelicun',
version=pelicun.__version__,
url='http://nheri-simcenter.github.io/pelicun/',
license='BSD License',
author='Adam Zsarnóczay',
tests_require=['pytest'],
author_email='adamzs@stanford.edu',
description='Probabilistic Estimation of Losses, Injuries, and Community resilience Under Natural disasters',
long_description=long_description,
long_description_content_type='text/markdown',
#packages=['pelicun'],
packages = find_packages(),
include_package_data=True,
platforms='any',
install_requires=[
'numpy>=1.17.0',
'scipy>=1.3.0',
'pandas>=1.0.0',