mirror of
https://github.com/ankitects/anki.git
synced 2025-09-23 08:22:24 -04:00
remove setuptools
This commit is contained in:
parent
64bd1dc06a
commit
ab281d0bc6
2 changed files with 0 additions and 31 deletions
31
setup.py
31
setup.py
|
@ -1,31 +0,0 @@
|
|||
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", "anki.template"],
|
||||
package_data={'anki': ['locale/*/*/*'],},
|
||||
include_package_data=True,
|
||||
zip_safe=False,
|
||||
install_requires=[
|
||||
],
|
||||
)
|
Loading…
Reference in a new issue