-
Notifications
You must be signed in to change notification settings - Fork 55
/
setup.py
42 lines (32 loc) · 1.05 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
from setuptools import setup, find_packages
def readme():
with open('README.rst') as f:
return f.read().strip()
def version():
with open('skgstat/__version__.py') as f:
loc = dict()
exec(f.read(), loc, loc)
return loc['__version__']
def requirements():
with open('requirements.txt') as f:
return f.read().strip().split('\n')
def classifiers():
with open('classifiers.txt') as f:
return f.read().strip().split('\n')
setup(name='scikit-gstat',
license='MIT License',
version=version(),
author='Mirko Maelicke',
author_email='mirko.maelicke@kit.edu',
description='Geostatistical expansion in the scipy style',
long_description=readme(),
long_description_content_type='text/x-rst',
classifiers=classifiers(),
install_requires=requirements(),
test_suite='nose.collector',
# test_require=['nose'],
extras_require={"gstools": ["gstools>=1.3"]},
packages=find_packages(),
include_package_data=True,
zip_safe=False
)