forked from psyinfra/onyo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (36 loc) · 914 Bytes
/
setup.py
File metadata and controls
37 lines (36 loc) · 914 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
33
34
35
36
37
''' setup file for installation of onyo '''
from setuptools import setup, find_packages
setup(
name='onyo',
version=open("onyo/_version.py").readlines()[-1].split()[-1].strip("\"'"),
description='Textual inventory system backed by git.',
author='Tobias Kadelka',
author_email='t.kadelka@fz-juelich.de',
packages=find_packages(),
license='ISC',
install_requires=[
'ruamel.yaml',
'rich',
],
extras_require={
'tests': [
'flake8',
'pyre-check',
'pytest',
'pytest-cov',
'pytest-randomly'
],
'docs': [
'sphinx>=4.3.0',
'sphinx-argparse',
'sphinx-rtd-theme>=0.5.2'
]
},
python_requires=">=3.9",
entry_points={
'console_scripts': [
'onyo=onyo.main:main'
],
},
include_package_data=True,
)