-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1.1 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
from setuptools import setup
version = {}
with open("./PySALESetup/_version.py") as fp:
exec(fp.read(), version)
with open("./README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='PySALESetup',
python_requires='>3.9, <3.12',
version=version['__version__'],
packages=['PySALESetup'],
url='https://github.com/jgd10/PySALESetup',
license='MIT',
author='James Derrick',
author_email='[email protected]',
description='iSALE setup package',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
include_package_data=True,
package_data={
'PySALESetup.grain_library_directory':
['grain_library_directory/*'],
'PySALESetup.input_templates':
['input_templates/*']
},
install_requires=[
'matplotlib>=3.4.3',
'numpy>=1.21.2',
'Shapely>=2.0.0',
'scipy>=1.2.1'
]
)