forked from cdsousa/PyLMI-SDP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (34 loc) · 1.09 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
from os.path import exists
from setuptools import setup
def read_file(name):
return open(name).read()
description = ('Symbolic linear matrix inequalities (LMI) and semi-definite'
'programming (SDP) tools for Python')
if exists('README.rst'):
long_description = read_file('README.rst')
elif exists('README.md'):
long_description = read_file('README.md')
else:
long_description = description
setup(
name='PyLMI-SDP',
version='1.0-dev',
author='Cristovao D. Sousa',
author_email='[email protected]',
description=description,
license='BSD',
keywords='LMI SDP',
url='http://github.com/cdsousa/PyLMI-SDP',
packages=['lmi_sdp'],
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Manufacturing',
'Intended Audience :: Science/Research',
],
)