-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 845 Bytes
/
setup.py
File metadata and controls
35 lines (30 loc) · 845 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
from version import __version__
from setuptools import setup
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='linuxserver',
version=__version__,
description='A simple CLI to deploy linuxserver services',
long_description=readme,
long_description_content_type='text/markdown',
author='Frank Oprel',
author_email='fj.oprel@gmail.com',
url='https://github.com/foprel/linuxserver',
install_requires=requirements,
license=license,
packages=[
'.',
'cli'
],
package_dir={'cli': 'src/cli'},
include_package_data=True,
entry_points={
'console_scripts': ['linuxserver = cli.cli:main'],
},
python_requires='>=3.8',
)