-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·49 lines (46 loc) · 1.95 KB
/
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
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python3
###########################################################################
# ____ _____________ __ __ __ _ _____ ___ _ #
# / __ \/ ____/ ___/\ \/ / | \/ (_)__ _ _ __|_ _/ __| /_\ (R) #
# / / / / __/ \__ \ \ / | |\/| | / _| '_/ _ \| || (__ / _ \ #
# / /_/ / /___ ___/ / / / |_| |_|_\__|_| \___/|_| \___/_/ \_\ #
# /_____/_____//____/ /_/ T E C H N O L O G Y L A B #
# #
# Copyright 2021 Deutsches Elektronen-Synchrotron DESY. #
# SPDX-License-Identifier: BSD-3-Clause #
# #
###########################################################################
import setuptools
from pathlib import Path as path
from mmcterm import __version__
readme_contents = path('./README.md').read_text()
requirements = path('./requirements.txt').read_text().splitlines()
packages = setuptools.find_packages(include=['mmcterm'])
setuptools.setup(
name='mmcterm',
version=__version__,
author='Patrick Huesmann',
author_email='[email protected]',
url='https://techlab.desy.de',
license='BSD',
description='Serial over IPMB terminal for DESY MMCs',
long_description=readme_contents,
long_description_content_type='text/markdown',
keywords='microtca mmc ipmi ipmb console',
install_requires=requirements,
packages=packages,
classifiers=[
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Development Status :: 3 - Alpha',
],
entry_points={
'console_scripts': [
'mmcterm=mmcterm.mmcterm:main',
],
},
python_requires='>=3.6'
)