-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
66 lines (60 loc) · 1.64 KB
/
Copy pathsetup.py
File metadata and controls
66 lines (60 loc) · 1.64 KB
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
#!/usr/bin/env python
import os
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
from basmati.version import get_version
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except:
return ''
setup(
name='basmati',
version=get_version(),
description='BAsin-Scale Model Assessment ToolkIt',
long_description=read('README.md'),
author='Mark Muetzelfeldt',
author_email='mark.muetzelfeldt@reading.ac.uk',
maintainer='Mark Muetzelfeldt',
maintainer_email='mark.muetzelfeldt@reading.ac.uk',
packages=[
'basmati',
'basmati.demo',
],
# scripts=[
# 'bin/basmati',
# ],
entry_points={
'console_scripts': [
'basmati=basmati.basmati_cmd:basmati_cmd'
]
},
python_requires='>=3.6',
install_requires=[
'numpy',
'scipy',
'pandas',
'geopandas',
'rasterio',
'matplotlib',
'configparser',
'shapely',
],
extras_require={
'testing': ['nose', 'mock'],
'analysis': ['iris'],
},
package_data={'basmati.demo': ['schiemann2018mean_supplementary_tableS1.csv']},
url='https://github.com/markmuetz/basmati',
classifiers=[
'Environment :: Console',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Atmospheric Science',
],
keywords=[''],
)