-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (34 loc) · 1.12 KB
/
setup.py
File metadata and controls
40 lines (34 loc) · 1.12 KB
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.md'):
long_description = read_file('README.md')
else:
long_description = description
setup(
name='PyLMI-SDP',
version='1.1.1',
author='Cristovao D. Sousa',
author_email='crisjss@gmail.com',
description=description,
license='BSD',
keywords='LMI SDP',
url='http://github.com/cdsousa/PyLMI-SDP',
packages=['lmi_sdp'],
install_requires=['sympy', 'packaging'],
long_description=long_description,
long_description_content_type="text/markdown",
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',
],
)