This repository was archived by the owner on Dec 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.29 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.29 KB
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
from setuptools import setup
with open("README.md", "rt", encoding="utf8") as f:
readme = f.read()
setup(
name="bakalari-token",
version="2.0.post1",
url="https://github.com/bakalari-api/python-token-generator",
project_urls={
"Documentation": "https://github.com/bakalari-api/python-token-generator/blob/master/README.md#návod",
"Code": "https://github.com/bakalari-api/python-token-generator",
"Issue tracker": "https://github.com/bakalari-api/python-token-generator/issues",
},
license="MIT License",
author="Marian Šámal",
author_email="margotka000@gmail.com",
description="Jednoduchý Python script pro vygenerování tokenu pro Bakaláři API.",
long_description=readme,
long_description_content_type="text/markdown",
python_requires=">=3.6",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: Czech",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Education",
],
py_modules=["bakalari_token"],
entry_points={"console_scripts": ["bakalari-token=bakalari_token:cli"]},
)