-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
32 lines (30 loc) · 1000 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
25
26
27
28
29
30
31
32
from setuptools import setup
version = "3.0.2"
setup(
name="qtm-rt",
version=version,
description="QTM Python SDK",
long_description="For older versions, see \"qtm\" package.",
url="https://github.com/qualisys/qualisys_python_sdk",
download_url="https://github.com/qualisys/qualisys_python_sdk/tarball/{}".format(
version
),
author="Qualisys AB",
author_email="[email protected]",
license="MIT",
packages=["qtm_rt"],
package_data={"qtm_rt": ["data/demo.qtm"]},
classifiers=[
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
],
python_requires=">=3.5.3",
zip_safe=True,
)