-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (33 loc) · 1.23 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
from codecs import open
from inspect import getsource
from os.path import abspath, dirname, join
from setuptools import find_packages, setup
here = abspath(dirname(getsource(lambda: 0)))
with open(join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="sbx",
version="0.1.2",
description="StudyBox (SBX) - Terminal Flashcards",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/JaDogg/sbx",
author="Bhathiya Perera",
author_email="[email protected]",
python_requires=">=3.8",
license="MIT",
package_data={"": ["*.md"]},
install_requires=["prompt-toolkit>=3.0.29", "Pygments>=2.12.0"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
keywords="study flashcard terminal",
packages=find_packages(exclude=["tests", "docs"]),
entry_points={"console_scripts": ["sbx = sbx.__main__:main"]},
setup_requires=["wheel"],
)