-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
81 lines (78 loc) · 2 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
# Note:
# Version scheme follow PEP440 https://peps.python.org/pep-0440/
# _NOT_ SemVer https://semver.org
setup(
name="libumccr",
version="0.4.1",
author="UMCCR and Contributors",
author_email="[email protected]",
description="UMCCR Reusable Python modules",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/umccr/libumccr",
license="MIT",
packages=find_packages(exclude=("tests**", "docs")),
project_urls={
"Bug Tracker": "https://github.com/umccr/libumccr/issues",
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
extras_require={
"dev": [
"pipdeptree",
"twine",
"setuptools",
"wheel",
"build",
"pdoc3",
"pre-commit",
"detect-secrets",
],
"test": [
"pytest",
"pytest-cov",
"flake8",
"mockito",
"tox",
"nose2",
"awscli-local",
"cachetools",
],
"libgdrive": [
"requests",
"pandas",
"gspread",
"gspread-pandas",
"google-auth",
"cachetools",
],
"aws": [
"boto3",
"botocore",
"cachetools",
],
"all": [
"Django",
"boto3",
"botocore",
"cachetools",
"requests",
"pandas",
"gspread",
"gspread-pandas",
"google-auth",
],
},
install_requires=[
# silent night
],
)