-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 890 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 890 Bytes
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
import setuptools
long_description = 'Evaluation and display of analytic groundwater solutions.'
setuptools.setup(
name='pygaf',
version='1.0.3',
author='Tony Smith',
author_email='tony@moofbytes.com',
description='Python Groundwater Analytic Flow',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/Moofbytes/PyGAF',
project_urls = {
'Documentation': 'https://pygaf.readthedocs.io/en/latest/index.html',
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Hydrology',
'Development Status :: 3 - Alpha',
],
license='MIT',
packages=['pygaf', 'pygaf.solutions'],
package_data={'pygaf': ['images/*.png']}
)