-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
62 lines (60 loc) · 1.59 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
50
51
52
53
54
55
56
57
58
59
60
61
62
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="libica",
version="2.5.0",
url="https://github.com/umccr-illumina/libica",
license="MIT",
author="UMCCR and Contributors",
author_email="[email protected]",
description="Python SDK for Illumina Connected Analytics",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=("tests**", "**test**", "docs")),
project_urls={
"Bug Tracker": "https://github.com/umccr-illumina/libica/issues",
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
extras_require={
"dev": [
"pipdeptree",
"twine",
"setuptools",
"wheel",
"build",
"pdoc3",
"mkdocs",
"mkdocs-material",
"openapi-spec-validator",
"pre-commit",
"detect-secrets",
"black",
"ggshield"
],
"test": [
"pytest",
"pytest-cov",
"flake8",
"mockito",
"tox",
"nose2",
],
},
install_requires=[
"requests",
"python-dateutil",
"six",
"urllib3",
"certifi",
"PyYAML",
"boto3",
"botocore",
],
)