-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (47 loc) · 1.58 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
42
43
44
45
46
47
48
49
50
from distutils.core import setup
# This will pull the first # header in the README
# and use it as the PyPI official description
with open("README.md") as fh:
long_description = ""
header_count = 0
for line in fh:
if line.startswith("#"):
header_count += 1
if header_count < 2:
long_description += line
else:
break
setup(
name = 'midbench',
packages = ['midbench', 'midbench.envs', 'midbench.utils', 'midbench.envs.airfoil', 'midbench.envs.heatconduction'],
version = '0.1',
license='MIT',
description = "The Maryland Inverse Design (MID) Benchmark Suite",
long_description = long_description,
long_description_content_type="text/markdown",
include_package_data=True,
author = 'The Information for Design, Engineering, And Learning Laboratory',
author_email = '[email protected]',
url = 'https://github.com/IDEALLab/midbench',
download_url = 'https://github.com/IDEALLab/midbench/archive/refs/tags/v0.1-beta.tar.gz',
install_requires=[
'numpy',
'scipy',
'torch',
'dataclasses',
'typing_extensions',
'importlib-metadata',
'pandas'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)