-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.09 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.09 KB
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
from setuptools import setup, find_packages
import pathlib
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name='biostarPython',
version='0.4.0.2',
author_email = 'gcartlidge@supremainc.com',
author = 'SupremaUK',
description = 'Python client for Suprema GSDK with included callable classes.',
long_description=README,
long_description_content_type="text/markdown",
url = 'https://github.com/gcartlidge/biostarPython',
packages=['biostarPython','biostarPython.service','biostarPython.proto'],
python_requires='>3.5.2',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
package_data={
"": ["*.py", "*.proto", "*.json"],
"proto": ["*.proto"],
"service": ["*.py"],
},
install_requires=[
'grpcio',
'protobuf',
],
)