| 14 | | 16 | |
|---|
| 15 | install_requires = ['SQLObject>=0.6,<=0.7.99'], | 17 | install_requires = ['SQLObject>=0.6,<=0.7.99'], |
|---|
| 16 | # don't require cherrypy and kid as they are not needed for the core | 18 | # don't require cherrypy and kid as they are not needed for the core |
|---|
| 17 | # library -- only for the web interface | 19 | # library -- only for the web interface |
|---|
| 18 | extras_require = { | 20 | extras_require = { |
|---|
| 19 | 'web_gui' : ['CherryPy>=0.3', 'kid>=0.9'], | 21 | 'web_gui' : ['CherryPy>=0.3', 'kid>=0.9'], |
|---|
| 20 | }, | 22 | }, |
|---|
| 21 | | 23 | |
|---|
| 22 | # metadata for upload to PyPI | 24 | # metadata for upload to PyPI |
|---|
| 23 | author = "Rufus Pollock (Open Knowledge Foundation)", | 25 | author = "Rufus Pollock (Open Knowledge Foundation)", |
|---|
| 24 | author_email = "rufus.pollock@okfn.org", | 26 | author_email = "rufus.pollock@okfn.org", |
|---|
| 25 | description = \ | 27 | description = \ |
|---|
| 26 | "A full open set of Shakespeare's works along with anciallary material, a variety of tools and a python api", | 28 | "A full open set of Shakespeare's works along with anciallary material, a variety of tools and a python api", |
|---|
| 27 | long_description = \ | 29 | long_description = \ |
|---|
| 28 | """ | 30 | """ |
|---|
| 29 | The Open Shakespeare package provides a full open set of shakespeare's works | 31 | The Open Shakespeare package provides a full open set of shakespeare's works |
|---|
| 30 | (often in multiple versions) along with ancillary material, a variety of tools | 32 | (often in multiple versions) along with ancillary material, a variety of tools |
|---|
| 31 | and a python API. | 33 | and a python API. |
|---|
| 32 | | 34 | |
|---|
| 33 | Specifically in addition to the works themselves (often in multiple versions) | 35 | Specifically in addition to the works themselves (often in multiple versions) |
|---|
| 34 | there is an introduction, a chronology, explanatory notes, a concordance and | 36 | there is an introduction, a chronology, explanatory notes, a concordance and |
|---|
| 35 | search facilities. | 37 | search facilities. |
|---|
| 36 | | 38 | |
|---|
| 37 | All material is open source/open knowledge so that anyone can use, redistribute | 39 | All material is open source/open knowledge so that anyone can use, redistribute |
|---|
| 38 | and reuse these materials freely. For exact details of the license under which | 40 | and reuse these materials freely. For exact details of the license under which |
|---|
| 39 | this package is made available please see COPYING.txt. | 41 | this package is made available please see COPYING.txt. |
|---|
| 40 | | 42 | |
|---|
| 41 | Open Shakespeare has been developed under the aegis of the Open Knowledge | 43 | Open Shakespeare has been developed under the aegis of the Open Knowledge |
|---|
| 42 | Foundation (http://www.okfn.org/). | 44 | Foundation (http://www.okfn.org/). |
|---|
| 43 | """, | 45 | """, |
|---|
| 44 | license = "MIT", | 46 | license = "MIT", |
|---|
| 45 | keywords = "open shakespeare search view", | 47 | keywords = "open shakespeare search view", |
|---|
| 46 | url = "http://www.openshakespeare.org/", | 48 | url = "http://www.openshakespeare.org/", |
|---|
| 47 | download_url = "http://www.openshakespeare.org/code/", | 49 | download_url = "http://www.openshakespeare.org/code/", |
|---|
| 48 | classifiers = [ | 50 | classifiers = [ |
|---|
| 49 | 'Development Status :: 3 - Alpha', | 51 | 'Development Status :: 3 - Alpha', |
|---|
| 50 | 'Environment :: Console', | 52 | 'Environment :: Console', |
|---|
| 51 | 'Intended Audience :: Developers', | 53 | 'Intended Audience :: Developers', |
|---|
| 52 | 'License :: OSI Approved :: MIT License', | 54 | 'License :: OSI Approved :: MIT License', |
|---|
| 53 | 'Operating System :: OS Independent', | 55 | 'Operating System :: OS Independent', |
|---|
| 54 | 'Programming Language :: Python', | 56 | 'Programming Language :: Python', |
|---|
| 55 | 'Topic :: Software Development :: Libraries :: Python Modules'], | 57 | 'Topic :: Software Development :: Libraries :: Python Modules'], |
|---|
| 56 | ) | 58 | ) |
|---|