-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 920 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 920 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
from setuptools import find_packages, setup
setup(
name="trajallocpy",
version="0.0.14",
description="TrajAllocPy is a Python library that provides functionality for trajectory task Allocation using Consensus based bundle algorithm",
long_description="",
long_description_content_type="text/markdown",
author="Kasper Rømer Grøntved",
author_email="kaspergrontved@gmail.com",
url="",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
packages=find_packages(),
python_requires=">=3.10",
install_requires=[
"numpy",
"shapely",
"geojson",
"scipy",
"networkx",
"matplotlib",
"extremitypathfinder[numba]",
],
extras_require={"test": ["pytest"]},
)