-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.17 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
from pathlib import Path
import pkg_resources as pkg
from setuptools import find_packages, setup
FILE = Path(__file__).resolve()
PARENT = FILE.parent # root directory
README = (PARENT / "README.md").read_text(encoding="utf-8")
REQUIREMENTS = [
f"{x.name}{x.specifier}"
for x in pkg.parse_requirements((PARENT / "requirements.txt").read_text())
]
VERSION = "0.2.4"
setup(
name="HSC3D", # name of pypi package
version=VERSION, # version of pypi package
python_requires=">=3.10",
license="Creative Commons Attribution-NonCommercial",
description=(
"HSC3D: a Python package to quantify three-dimensional habitat structural complexity"
),
long_description=README,
long_description_content_type="text/markdown",
url='https://github.com/Vicellken/HSC3D',
project_urls={
'Bug Reports': 'https://github.com/Vicellken/HSC3D/issues',
'Source': 'https://github.com/Vicellken/HSC3D'},
author='Hu, Jiamian; Gu, Yi-Fei',
author_email='guyf0601@connect.hku.hk',
packages=find_packages(), # required
include_package_data=True,
install_requires=REQUIREMENTS,
keywords="3D point clouds, structural complexity",
)