We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a365e60 commit 829b077Copy full SHA for 829b077
setup.py
@@ -0,0 +1,26 @@
1
+from setuptools import setup, find_packages
2
+
3
+setup(
4
+ name='IHSetBernabeu',
5
+ version='0.1.0',
6
+ packages=find_packages(),
7
+ include_package_data=True,
8
+ install_requires=[
9
+ 'numpy',
10
+ 'pandas',
11
+ 'matplotlib',
12
+ 'scipy',
13
+ 'xarray',
14
+ 'numba'
15
+ ],
16
+ author='Lucas de Freitas Pereira',
17
+ author_email='lucas.defreitas@unican.es',
18
+ description='IH-SET Bernabeu et al. (2003)',
19
+ url='https://github.com/IHCantabria/IHSetBernabeu',
20
+ classifiers=[
21
+ 'Development Status :: 3 - Alpha',
22
+ 'Intended Audience :: Science/Research',
23
+ 'License :: OSI Approved :: MIT License',
24
+ 'Programming Language :: Python :: 3'
25
26
+)
0 commit comments