forked from zsarnoczay/pelicun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (56 loc) · 1.84 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from setuptools import setup, find_packages
import io
import pelicun
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='[email protected]',
description='Probabilistic Estimation of Losses, Injuries, and Community resilience Under Natural hazard events',
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.21.0',
'scipy>=1.7.0',
'pandas>=1.3.0',
'tables',
'xlrd<=1.2.0'
],
classifiers = [
'Programming Language :: Python',
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'Environment :: Console',
'Framework :: Jupyter',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering',
],
extras_require={
'testing': ['pytest'],
}
)