-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 1020 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 1020 Bytes
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, find_namespace_packages
test_deps = ["pytest", "pytest-cov", "pytest-asyncio"]
setup(
name="zepben.examples",
description="Module containing examples for interacting with Zepben's platform",
version="0.3.0b8",
url="https://github.com/zepben/ewb-sdk-examples-python",
author="Zeppelin Bend",
author_email="oss@zepben.com",
license="MPL 2.0",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent"
],
packages=find_namespace_packages(where="src"),
package_dir={'': 'src'},
python_requires='>=3.9, <3.13',
install_requires=[
"zepben.eas==0.19.0",
"zepben.evolve==0.48.0",
"numba==0.60.0",
"geojson==2.5.0",
"gql[requests]==3.4.1"
],
extras_require={
"test": test_deps,
},
)