-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (47 loc) · 1.39 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
#!/usr/bin/env python
import setuptools
from pipe_gaps.version import __version__
setuptools.setup(
name="pipe-gaps",
version=__version__,
author="Global Fishing Watch.",
maintainer="Tomás J. Link",
maintainer_email="[email protected]",
description="Time gap detector for AIS position messages.",
long_description_content_type="text/markdown",
url="https://github.com/GlobalFishingWatch/pipe-gaps",
packages=setuptools.find_packages(),
include_package_data=True,
package_data={
'pipe_gaps': [
'data/*.json',
'pipeline/schemas/*.json'
]
},
classifiers=[
"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=[
"importlib-resources~=6.0",
"geopy~=2.4",
"google-cloud-bigquery~=3.0",
"pandas~=2.1",
"py-cpuinfo~=9.0",
"pydantic~=2.0",
"rich~=13.0",
"sqlparse~=0.5",
],
extras_require={
"beam": ["apache-beam[gcp]~=2.61"],
},
entry_points={
"console_scripts": [
"pipe-gaps = pipe_gaps.cli:main",
]
},
)