forked from FoleyLab/wptherml_v1.0.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.19 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
data_files = ['README.md', 'LICENSE', 'documentation/Equations.pdf',
'*.ipynb', 'validation_data/*.txt', 'wptherml/datalib/*.txt']
setuptools.setup(
include_package_data=True,
name="wptherml",
#packages=['wptherml'],
packages=setuptools.find_packages(),
package_data={'wptherml':data_files},
package_dir={'wptherml': 'wptherml'},
#packages=setuptools.find_packages(),
#package_dir={'wptherml': 'wptherml'},
#package_data={'wptherml': ['datalib/*.txt', 'validation_data/*.txt']},
version="1.0.00",
author="Foley Lab",
author_email="[email protected]",
description="A Python package for the design of materials for harnessing heat.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://foleylab.github.io/wptherml/",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: POSIX :: Linux",
],
)