-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1022 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
38
39
40
#!/usr/bin/env python3
from setuptools import setup, find_packages
from rhnode.version import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="rhnode",
version=__version__,
author="Christian Hinge",
author_email="christian.hinge@regionh.dk",
description="RHNode used at CAAI",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/CAAI/rh-node",
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": [
"rhjob = rhnode.cli:main",
],
},
install_requires=[
"uvicorn",
"requests",
"jinja2",
"pydantic",
"fastapi",
"python-multipart",
"fastapi-utils",
"python-dotenv",
],
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)