-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
41 lines (38 loc) · 1.02 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
from setuptools import find_packages
from setuptools import setup
import versioneer
test_deps = [
'behave',
'pytest',
'pytest-cov',
'coverage',
],
extras = {
'test': test_deps,
}
setup(
name = "abaqus2dyna",
version = versioneer.get_version(),
cmdclass = versioneer.get_cmdclass(),
author = "Tim Hartman",
author_email = "[email protected]",
description = ("Translator from Abaqus input files to LS-DYNA input files"),
license = "MIT",
keywords = "abaqus ls-dyna dyna",
url = "https://github.com/tbhartman/abaqus2dyna",
packages=find_packages('src', exclude=['test*']),
package_dir = {'':'src'},
entry_points={
'console_scripts':[
'abaqus2dyna = abaqus2dyna.__main__:main',
],
},
install_requires = ['numpy'],
tests_require = test_deps,
extras_require = extras,
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
)