-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
41 lines (36 loc) · 1.27 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
41
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="pygfunction",
version="2.0.0",
packages=['pygfunction',
'pygfunction/examples'],
include_package_data=True,
install_requires=['coolprop>=6.4.1',
'matplotlib>=3.3.4',
'numpy>=1.19.2',
'scipy>=1.6.2'],
test_suite='tests',
# metadata for upload to PyPI
author="Massimo Cimmino",
author_email="[email protected]",
description="A g-function calculator for Python",
long_description_content_type='text/markdown',
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 :: 3.7",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
],
)