-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py.in
56 lines (50 loc) · 1.66 KB
/
setup.py.in
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import glob
import os
import sys
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
packages = find_packages(where=".")
print("PACKAGES: ", packages)
package_data = {
'': [
'./*.so',
'./*.dll',
]
}
# Cleaner to read in the contents rather than copy them over.
readme_contents = open("${mvsim_SOURCE_DIR}/README.md").read()
# Solves the problem of "setup.py install" complaining on being installed into
# a non-standard location during generation of Debian packages:
python_install_dir="${PYTHON_INSTALL_DIRECTORY}"
sys.path.insert(0, python_install_dir)
setup(
name='mvsim',
description='Multivehicle Simulator',
url='https://github.com/MRPT/mvsim',
version='${MVSIM_VERSION}', # https://www.python.org/dev/peps/pep-0440/
author='Jose Luis Blanco Claraco',
author_email='[email protected]',
license='Simplified BSD license',
keywords='robotics',
long_description_content_type='text/markdown',
long_description=readme_contents,
# https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
],
packages=packages,
package_data=package_data,
#test_suite="mvsim.tests",
#install_requires=["numpy"],
zip_safe=False,
)