Skip to content

Commit 5656c28

Browse files
authored
Merge pull request #37 from apulverizer/develop
v0.3.0
2 parents d6bd8a7 + 3117542 commit 5656c28

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/allagash/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .problem import Problem, UnboundedException, UndefinedException, InfeasibleException, NotSolvedException
22
from .coverage import Coverage
33

4-
__version__ = "0.2.3"
4+
__version__ = "0.3.0"

src/setup.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,15 @@ def find_version(*file_paths):
2929
url='https://github.com/apulverizer/allagash',
3030
packages=['allagash'],
3131
license='MIT',
32+
python_requires='>=3.6',
3233
install_requires=[
33-
'geopandas>=0.4.1',
3434
'pandas>=0.23.0',
3535
'pulp>=1.6.1'
3636
],
37+
extras_require={
38+
"arcgis": ["arcgis>=1.8.2"],
39+
"geopandas": ["geopandas>=0.4.1"]
40+
},
3741
classifiers=[
3842
'Intended Audience :: Science/Research',
3943
'Programming Language :: Python :: 3'

0 commit comments

Comments
 (0)