-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 965 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
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
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',
])