-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 1014 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 1014 Bytes
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
from setuptools import setup, find_packages
from pathlib import Path
VERSION = '1.31.0'
DESCRIPTION = 'En SDK til gymnasie siden Lectio'
long_description = (Path(__file__).parent / "README.md").read_text()
# Setting up
setup(
name="python-lectio",
version=VERSION,
author="jona799t",
#author_email="<not@available.com>",
url = 'https://github.com/jona799t/python-lectio',
description=DESCRIPTION,
long_description=long_description,
license_files = ('LICENSE.txt',),
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=["requests", "beautifulsoup4", "markdownify"],
keywords=['python', 'lectio', 'sdk', 'gymnasie', 'gymnasium'],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)