-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (39 loc) · 1.37 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
"""Installation of scm-helper."""
import setuptools
with open("README.md", "r") as fh:
DESCRIPTION = fh.read()
VERSION = {}
with open("scm_helper/version.py") as fh:
exec(fh.read(), VERSION)
setuptools.setup(
name="scm-helper",
version=VERSION["VERSION"],
author="Colin Robbins",
author_email="[email protected]",
description="Helper tool to manage data in Swim Club Manager",
long_description=DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/ColinRobbins/scm-helper",
entry_points={"console_scripts": ["scm=scm_helper.main:main"]},
project_urls={
"Bug Tracker": "https://github.com/ColinRobbins/scm-helper/issues",
"Documentation": "https://github.com/ColinRobbins/scm-helper/wiki",
"Source Code": "https://github.com/ColinRobbins/scm-helper",
"Change Log": "https://github.com/ColinRobbins/scm-helper/blob/master/CHANGELOG.md",
},
packages=setuptools.find_packages(),
install_requires=[
"schema>=0.7.2",
"requests>=2.22.0",
"pyyaml>=5.3",
"cryptography>=2.8",
"func-timeout>=4.3.5",
"selenium>=4.12.0",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
)