forked from MassimoCimmino/pygfunction
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 1.23 KB
/
setup.py
File metadata and controls
40 lines (35 loc) · 1.23 KB
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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="pygfunction",
version="1.1.0",
packages=['pygfunction',
'pygfunction/examples'],
include_package_data=True,
install_requires=['matplotlib>=1.5.3',
'numpy>=1.11.3',
'scipy>=1.0.0'],
test_suite='tests',
# metadata for upload to PyPI
author="Massimo Cimmino",
author_email="massimo.cimmino@polymtl.ca",
description="A g-function calculator for Python",
long_description=read('README.md'),
license="BSD-3-Clause",
keywords="Geothermal, Ground-source, Ground heat exchangers",
url="https://github.com/MassimoCimmino/pygfunction",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
],
)