wrap/setup.py
Go to the documentation of this file.
1 """Setup file for the GTwrap package"""
2 
3 try:
4  from setuptools import find_packages, setup
5 except ImportError:
6  from distutils.core import find_packages, setup
7 
8 packages = find_packages()
9 
10 setup(
11  name='gtwrap',
12  description='Library to wrap C++ with Python and Matlab',
13  version='1.1.0',
14  author="Frank Dellaert et. al.",
15  author_email="dellaert@gatech.edu",
16  license='BSD',
17  keywords="wrap, bindings, cpp, python",
18  long_description=open("README.md").read(),
19  long_description_content_type="text/markdown",
20  python_requires=">=3.5",
21  # https://pypi.org/classifiers
22  classifiers=[
23  'Development Status :: 4 - Beta',
24  'Intended Audience :: Education',
25  'Intended Audience :: Developers',
26  'Intended Audience :: Science/Research',
27  'Operating System :: MacOS',
28  'Operating System :: Microsoft :: Windows',
29  'Operating System :: POSIX',
30  'Programming Language :: Python :: 3',
31  'Topic :: Software Development :: Libraries'
32  ],
33  packages=packages,
34  platforms="any",
35  install_requires=open("requirements.txt").readlines(),
36 )
static GaussianFactorGraph read(const string &name)


gtsam
Author(s):
autogenerated on Sat May 8 2021 02:44:01