-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
49 lines (46 loc) · 1.54 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
#!/usr/bin/env python
import setuptools
from pipe_segment.version import __version__
setuptools.setup(
name="pipe_segment",
version=__version__,
author="Global Fishing Watch.",
# author_email="",
# maintainer="",
description=(
"Divides vessel tracks into contiguous 'segments' "
"separating out signals that come from two or more vessels "
"which are broadcasting using the same MMSI at the same time."
),
long_description_content_type="text/markdown",
url="https://github.com/GlobalFishingWatch/pipe-segment",
packages=setuptools.find_packages(exclude=["test*.*", "tests"]),
include_package_data=True,
classifiers=[
"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",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
install_requires=[
'apache-beam[gcp]<3',
'backports.zoneinfo<1;python_version<"3.9"',
'gpsdio-segment '
'@ https://codeload.github.com/GlobalFishingWatch/gpsdio-segment/tar.gz/v3.0.0',
'jinja2<4',
'jinja2-cli<1',
'newlinejson<2',
'python-stdnum<2',
'rich<14',
'shipdataprocess<1',
'ujson<6',
],
entry_points={
'console_scripts': [
'pipe = pipe_segment.cli.cli:main',
]
},
)