forked from VU-IVM/honeybees
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (52 loc) · 1.68 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
# -*- coding: utf-8 -*-
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='honeybees',
version='0.2',
description='Honeybees is an agent-based modelling framework targeted at large-scale agent-based models.',
long_description=long_description,
long_description_content_type='text/markdown',
url='http://github.com/jensdebruijn/honeybees',
author='Jens de Bruijn',
author_email='[email protected]',
packages=[
'honeybees',
'honeybees.library',
'honeybees.visualization',
'honeybees.visualization.modules',
],
package_data={
'honeybees': [
'visualization/templates/*',
'visualization/templates/css/*',
'visualization/templates/js/*',
'visualization/templates/fonts/*',
'visualization/canvas/*.js'
],
'': ['README.md']
},
include_package_data=True,
zip_safe=False,
install_requires=[
"netcdf4",
"pandas",
"openpyxl",
"geopandas",
"numpy",
"numba",
"tbb",
"tornado",
"python-dateutil",
"rasterio",
"pyyaml",
"matplotlib"
],
extras_require = {
'plotting': ["cartopy"],
'docs': ["sphinx", "sphinx_rtd_theme", "sphinx-autodoc-typehints", "sphinxcontrib-autoprogram"],
'tests': ["matplotlib", "pytest", "pytest-plt", "pytest-benchmark"]
}
)