-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
110 lines (97 loc) · 2.12 KB
/
setup.cfg
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[metadata]
name= kaska
version = 0.0.1
url = https://github.com/UCL/kaska
#download_url
#project_urls
author = Jose Gomez-Dans
author_email = [email protected]
#maintainer
#maintainer_email
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Natural Language :: English
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
license = GNU General Public License v3
#licence_file
description = An efficient smoother
long_description = file: README.rst, HISTORY.rst
keywords = kaska
#platforms
#provides
#requires
#obsoletes
[options]
python_requires = >= 3.6
packages = find:
include_package_data = True
zip_safe = False
setup_requires = pytest-runner
install_requires =
numpy
scipy
matplotlib
numba
colorama >= 0.3.9
tensorflow
tqdm
# gdal <=2.5.2 # Commented as it's not clear how to detect it (needs also library)
[options.package_data]
kaska.inverters = *.h5, *.npz
[options.extras_require]
tests =
pytest
pytest-cov
pytest-mock
tox
tox-conda
docs =
sphinx<2
sphinx-rtd-theme<0.5
readthedocs-sphinx-ext<1.1
numpydoc
#extras_require
#python_requires
#entry_points
#use_2to3
#use_2to3_fixers
#use_2to3_exclude_fixers
#convert_2to3_doctests
#scripts
#eager_resources
#dependency_links
#package_dir
#exclude_package_data
#namespace_packages
#py_modules
#data_files
[options.packages.find]
include =
kaska
[bumpversion]
current_version = 0.0.1
commit = True
tag = True
[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'
[bumpversion:file:kaska/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[bdist_wheel]
universal = 1
[flake8]
exclude = docs
[aliases]
# Define setup.py command aliases here
test = pytest
[tool:pytest]
collect_ignore = ['setup.py']