small change to setup.py

release/4.3a0
Matthew Broadway 2019-02-20 09:03:34 +00:00
parent 135ef5a0d0
commit 290aad3372
2 changed files with 6 additions and 3 deletions

View File

@ -1,2 +1 @@
from .gtsam_unstable import * from .gtsam_unstable import *

View File

@ -21,8 +21,12 @@ setup(
'Intended Audience :: Education', 'Intended Audience :: Education',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'Intended Audience :: Science/Research', 'Intended Audience :: Science/Research',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'License :: OSI Approved :: BSD License', 'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: ${PYTHON_VERSION_MAJOR}', 'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
], ],
packages=packages, packages=packages,
@ -32,5 +36,5 @@ setup(
}, },
install_requires=[line.strip() for line in ''' install_requires=[line.strip() for line in '''
${CYTHON_INSTALL_REQUIREMENTS} ${CYTHON_INSTALL_REQUIREMENTS}
'''.splitlines() if len(line) > 0 and not line.strip().startswith('#')] '''.splitlines() if len(line.strip()) > 0 and not line.strip().startswith('#')]
) )