forked from OceanStreamIO/oceanstream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 669 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (19 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import find_packages, setup
# Reading requirements from 'requirements.txt'
with open("requirements.txt", "r") as f:
requirements = [line.strip() for line in f.readlines()]
setup(
name="oceanstream",
version="0.1",
packages=find_packages(),
install_requires=requirements,
package_data={"oceanstream": ["settings/*.json", "data/*.json"]},
include_package_data=True, # Include package data
# Optional metadata
author="Pine View Software AS",
author_email="[email protected]",
description="",
license="MIT",
keywords="oceanstream echosounder",
url="https://github.com/OceanStreamIO/oceanstream",
)