-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
69 lines (61 loc) · 2.12 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import setuptools
import objectbox
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="objectbox",
version=str(objectbox.version),
author="ObjectBox",
description="ObjectBox is a superfast lightweight database for objects",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://objectbox.io",
project_urls={
'GitHub': 'https://github.com/objectbox/objectbox-python',
'Tracker': 'https://github.com/objectbox/objectbox-python/issues',
},
python_requires='>=3.4, <4',
license='Apache 2.0',
classifiers=[
"Development Status :: 5 - Production/Stable"
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: C",
"Programming Language :: C++",
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
"Topic :: Database",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
],
install_requires=[
'flatbuffers==24.3.25',
'numpy'
],
packages=setuptools.find_packages(exclude=['exampl*']),
package_data={
'objectbox': [
# Linux, macOS
'lib/x86_64/*',
'lib/aarch64/*',
'lib/armv7l/*',
'lib/armv6l/*',
'lib/macos-universal/*',
# Windows
'lib/AMD64/*',
],
}
)