Skip to content

Commit 829b077

Browse files
committed
setup.py
1 parent a365e60 commit 829b077

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

setup.py

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)