-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 839 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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="gapnet",
version="0.1.0",
description="gapnet",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pjnr1/gapnet",
author="Jens C Thuren Lindahl",
author_email="[email protected]",
classifiers=[],
keywords="",
package_dir={"": "."},
packages=find_packages(where="."),
python_requires=">=3.10, <4",
install_requires=[],
package_data={},
entry_points={},
project_urls={
"documentation": "https://pjnr1.github.io/gapnet/api/index.html",
},
)