-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
79 lines (74 loc) · 2.28 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
from setuptools import setup, find_packages
import io
import nheri_simcenter
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='nheri_simcenter',
version=nheri_simcenter.__version__,
url='http://nheri-simcenter.github.io/nheri_simcenter/',
license='BSD License',
author='Adam Zsarnóczay',
tests_require=['pytest'],
author_email='[email protected]',
description='NHERI SimCenter Python Dependencies',
long_description=long_description,
long_description_content_type='text/markdown',
#packages=['nheri_simcenter'],
packages = find_packages(),
include_package_data=True,
platforms='any',
install_requires=[
'numpy==1.25.2',
'scipy==1.11.2',
'pandas==1.5.2',
'pydantic==2.4',
'momepy==0.6.0',
'geopandas==0.13.2',
'openpyxl',
'tables',
'openseespy',
'scikit-learn',
'plotly',
'colorlover',
'jpype1',
'tqdm',
'gpy==1.13.1',
'emukit',
'psutil',
'numpy-stl',
'pyredi',
'pelicun==3.3.3',
'rasterio',
'ujson==5.9',
'wntrfr==1.1.0.1.2'
],
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.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering',
],
extras_require={
'testing': ['pytest'],
}
)