-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 1003 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='czmtestkit',
version='1.1.0',
description='Python + abaqus-python based package for testing Abaqus/CAE user element subrotines for cohesive zone models',
long_description=long_description,
long_description_content_type='text/markdown',
author='Nanditha Mudunuru, Miguel Bessa, Albert Turon',
author_email='nanditha.mudunuru@gmail.com',
url='https://pypi.org/project/czmtestkit/',
download_url='https://github.com/NMudunuru/CzmTestKit.git',
project_urls={
'Documentation': 'https://czmtestkit.readthedocs.io/en/latest/',
},
classifiers=[
"Programming Language :: Python",
"Development Status :: 2 - Pre-Alpha",
],
license='GNU GPL v3.0',
zip_safe=False,
packages=find_packages(),
python_requires=">=3.9.1",
install_requires=[
'numpy>=1.22.1',
]
)