-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (22 loc) · 805 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
from setuptools import setup
def main():
setup(
name='posipoly',
version='0.1',
packages=['posipoly'],
license='BSD-3',
author='Petter Nilsson',
author_email='pettni@caltech.edu',
description='Tools for efficient optimization over positive polynomials',
classifiers=['Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Operating System :: Unix',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3'],
package_data={}
)
if __name__ == '__main__':
main()