-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (35 loc) · 1.72 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
# -*- coding: utf-8 -*-
"""
Created on 20.09.2023
@author: Stephan Göbel (RWTH Aachen University)
Setup-Function for bamLoadBasedTesting package
"""
# ======================================================================================================================
# Imports
# ======================================================================================================================
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
INSTALL_REQUIRES = ["numpy",
"matplotlib"
]
SETUP_REQUIRES = INSTALL_REQUIRES.copy()
setuptools.setup(name="bamLoadBasedTesting",
version="0.1.0",
description="Package for load-based-testing with two-mass-model.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/BAMresearch/bam-load-based-testing",
author="Stephan Göbel",
classifiers=["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"
],
packages=setuptools.find_packages(exclude=[""]),
setup_requires=SETUP_REQUIRES,
install_requires=INSTALL_REQUIRES,
package_data={'': ['REFPRP64.DLL', "hfcmech_v13all.cti"]},
include_package_data=True
)