-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
28 lines (27 loc) · 957 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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="pyapdl",
version='0.1.0.dev0',
description='Programming in ANSYS Parametric Design Language using Python',
author='Pedro Jorge De Los Santos',
author_email='[email protected]',
license = "MIT",
keywords=["FEA","ANSYS","APDL"],
install_requires=["numpy"],
url='https://github.com/JorgeDeLosSantos/pyapdl',
packages=['pyapdl'],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
],
)