small change to setup.py
parent
135ef5a0d0
commit
290aad3372
|
@ -1,2 +1 @@
|
||||||
from .gtsam_unstable import *
|
from .gtsam_unstable import *
|
||||||
|
|
||||||
|
|
|
@ -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('#')]
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue