-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 964 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 964 Bytes
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
from setuptools import setup, find_packages
VERSION = '0.1.3'
DESCRIPTION = 'Library for running non-hierarchical multi-disciplinary optimization'
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='nhatc',
version=VERSION,
description=DESCRIPTION,
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License"
],
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=['numpy==2.3.*', 'scipy==1.16.*', 'cexprtk==0.4.*'],
extras_require={
"dev": [
"pytest==8.*",
"twine>=4.0.2"
]
},
url="https://github.com/johnmartins/nhatc",
author="Julian Martinsson Bonde",
author_email="johnmartins1992@gmail.com",
license="MIT"
)