-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
25 lines (22 loc) · 927 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
#! /usr/bin/env python
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='pointwise-glyph-client',
version='2.0.13',
description='Glyph client in Python with Python-like API to Pointwise Glyph Server',
url='http://github.com/pointwise/GlyphClientPython',
install_requires=['numpy'],
packages=['pointwise', 'pointwise.glyphapi'],
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 2.7'],
author='Cadence Design Systems, Inc.',
author_email='[email protected]')