-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
33 lines (31 loc) · 1.03 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
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
import sys, os
import anki
setup(name='anki',
version=anki.version,
description='An intelligent spaced-repetition memory training library',
long_description="",
# Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Education',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='',
author='Damien Elmes',
author_email='anki@ichi2.net',
url='http://ichi2.net/anki/index.html',
license='GPLv3',
packages=["anki", "anki.importing"],
package_data={'anki': ['locale/*/*/*'],},
include_package_data=True,
zip_safe=False,
install_requires=[
],
)