File: setup.py

package info (click to toggle)
anki 0.9.6-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 4,920 kB
  • ctags: 1,220
  • sloc: python: 22,816; sh: 101; makefile: 45
file content (32 lines) | stat: -rw-r--r-- 1,009 bytes parent folder | download | duplicates (2)
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
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
import sys, os

import ankiqt

setup(name='ankiqt',
      version=ankiqt.appVersion,
      description='An intelligent spaced-repetition memory training program',
      long_description="",
      # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
      classifiers=[
    'Intended Audience :: Education',
    'License :: OSI Approved :: GNU General Public License (GPL)',
    'Operating System :: OS Independent',
    'Programming Language :: Python',
    'Topic :: Education',
        ],
      keywords='',
      author='Damien Elmes',
      author_email='anki@ichi2.net',
      url='http://ichi2.net/anki/index.html',
      license='GPLv3',
      packages=find_packages(),
      include_package_data=True,
      install_requires = 'anki >= ' + ankiqt.appVersion,
      zip_safe=False,
      package_data={'ankiqt':
                    ['locale/*/*/*']},
      scripts = ['anki'],
      )