Skip to content

Instantly share code, notes, and snippets.

@comatory
Created June 25, 2014 08:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save comatory/10ad9d5d425132e755c2 to your computer and use it in GitHub Desktop.
Save comatory/10ad9d5d425132e755c2 to your computer and use it in GitHub Desktop.
flashCardStudy setup.py
from setuptools import setup, find_packages
import sys, os
setup(name='flashCardStudy',
version='1.0',
description="CLI utility for memorizing and studying.",
long_description="""\
App designed for studying/memorizing flashcards. You create flashcards in the app and then you use it to display them in order or randomly.""",
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License',
'Topic :: Education',
],
keywords='GUI flashcard study memorizing',
author='comatory',
author_email='info@cmdspace.net',
url='http://comatory.github.io',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=[
'PrettyTable',
],
entry_points={
'console_scripts': ['flashstudy = bin.flashstudy:flashcard']
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment