-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 906 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 906 Bytes
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
from setuptools import setup
from setuptools import find_packages
with open('requirements.txt') as reqs:
install_requires = [
line for line in reqs.read().split('\n')
if (line and not line.startswith('--')) and (";" not in line)]
with open("README.md") as f:
long_description = f.read()
# Version "0.0.0" will be replaced by CI when releasing
setup(
author="Fabien MARTY",
author_email="fabien.marty@meteo.fr",
name='ghtc',
version="0.0.0",
license="BSD 3",
python_requires='>=3.6',
url="https://git.meteo.fr/dsi-dev-ws/ghtc",
description="ghtc service",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=install_requires,
include_package_data=True,
entry_points={
"console_scripts": [
"ghtc = ghtc.cli:main",
]
}
)