forked from hsosik/ifcb-analysis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (29 loc) · 994 Bytes
/
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
from setuptools import setup, find_packages
def version():
with open("VERSION") as f:
return f.read().strip()
def readme():
with open("README.md", "rb") as f:
return f.read().decode("utf-8", errors="ignore")
reqs = [line.strip() for line in open("requirements.txt") if not line.startswith("#")]
setup(
name="ifcb-features",
version=version(),
description="Feature extraction for IFCB data",
long_description=readme(),
license="MIT",
author="Otso Velhonoja",
url="https://github.com/veot/ifcb-features",
packages=find_packages(),
install_requires=reqs,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
],
include_package_data=True,
)