-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
38 lines (35 loc) · 1.23 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
from setuptools import setup
from lshca import get_lshca_version
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
pkg_version = get_lshca_version()
setup(
name = 'lshca',
packages = ['lshca'],
version = pkg_version,
license='GNU GPLv3',
description = 'This utility comes to provide bird\'s-eye view of HCAs installed',
long_description=long_description,
long_description_content_type='text/markdown',
author = 'Michael Braverman',
author_email = '[email protected]',
url = 'https://github.com/MrBr-github/lshca',
download_url = 'https://github.com/MrBr-github/lshca/archive/v{}.tar.gz'.format(pkg_version),
keywords = ['HCA', 'INFINIBAND', 'ROCE'],
# install_requires=[ '', '', ],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3'
],
entry_points={
'console_scripts': [
'lshca=lshca:main',
],
}
)