-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
25 lines (24 loc) · 890 Bytes
/
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
from setuptools import find_packages, setup
setup(
author="Marcin Kurczewski",
author_email="[email protected]",
name="drillsrs",
long_description="Spaced repetition learning in CLI",
version="0.3",
url="https://github.com/rr-/drill",
packages=find_packages(),
entry_points={"console_scripts": ["drill-srs = drillsrs.__main__:main"]},
install_requires=["xdg", "python-dateutil", "sqlalchemy", "jinja2",],
package_dir={"drillsrs": "drillsrs"},
package_data={"drillsrs": ["data/*.*"]},
classifiers=[
"Environment :: Console",
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Education",
],
)