generated from IBM/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
48 lines (43 loc) · 1.75 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
##
## © Copyright 2021- IBM Inc. All rights reserved
# SPDX-License-Identifier: MIT
##
import pathlib
from setuptools import find_packages,setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
# This call to setup() does all the work
setup(
name="elmclient",
version="0.29.0",
description="Python client for ELM with examples of OSLC Query, ReqIF import/export, Reportable REST, and more",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/IBM/ELM-Python-Client",
author="Ian Barnard",
# author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
packages=["elmclient", "elmclient.examples","elmclient.tests"],
include_package_data=True,
install_requires=['CacheControl','anytree',"colorama","cryptography",'lark_parser','lockfile','lxml',"openpyxl","python-dateutil", "pytz", "requests","requests_toolbelt",'tqdm','urllib3', "bump2version", "twine",'filelock'],
entry_points={
"console_scripts": [
"oslcquery=elmclient.examples.oslcquery:main",
"batchquery=elmclient.examples.batchquery:main",
"represt=elmclient.examples.represt:main",
"reqif_io=elmclient.examples.reqif_io:main",
"log2seq=elmclient.examples.log2seq:main",
"validate=elmclient.examples.validate:main",
]
},
)