Skip to content

Commit df5cbc9

Browse files
committed
Add setup.py
1 parent 6546e84 commit df5cbc9

File tree

4 files changed

+32
-1
lines changed

4 files changed

+32
-1
lines changed

README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
PyFluent
2+
--------

setup.py

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
"""Setup file for ansys-fluent-solver"""
2+
import os
3+
from setuptools import setup
4+
5+
THIS_PATH = os.path.abspath(os.path.dirname(__file__))
6+
7+
with open(os.path.join(THIS_PATH, "version.txt"), "r") as f:
8+
version = f.readline()
9+
10+
setup(
11+
name='ansys-fluent-solver',
12+
packages=['ansys.fluent.solver'],
13+
version=version,
14+
description="Fluent's SolverAPI exposed in Python",
15+
long_description=open('README.rst').read(),
16+
long_description_content_type='text/x-rst',
17+
url='https://github.com/mkundu1/pyfluent',
18+
license='MIT',
19+
author='ANSYS, Inc.',
20+
maintainer='Mainak Kundu',
21+
maintainer_email='[email protected]',
22+
install_requires=['grpcio>=1.30.0'],
23+
python_requires='>=3.5',
24+
classifiers=[
25+
'Development Status :: 4 - Beta',
26+
'Programming Language :: Python :: 3',
27+
'License :: OSI Approved :: MIT License',
28+
'Operating System :: OS Independent',
29+
],
30+
)

version.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)