-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 865 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import setuptools
if __name__ == "__main__":
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
author_email="Clement.Grisi@radboudumc.nl",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/DIAGNijmegen/unicorn_baseline",
project_urls={
"Bug Tracker": "https://github.com/DIAGNijmegen/unicorn_baseline/issues"
},
package_dir={"": "src"}, # our packages live under src, but src is not a package itself
packages=setuptools.find_packages("src", exclude=["tests"]),
exclude_package_data={"": ["tests"]},
entry_points={
"console_scripts": [
"unicorn_baseline = unicorn_baseline.inference:run",
],
},
)