-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
29 lines (27 loc) · 884 Bytes
/
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
from setuptools import setup
with open('README.md') as readme_file:
readme = readme_file.read()
setup(
name='gutenbergpoetrycorpus',
version='0.0.1',
author='Allison Parrish',
author_email='[email protected]',
url='https://github.com/aparrish/gutenberg-poetry-corpus',
description='A corpus of poetry from Project Gutenberg',
long_description=readme,
packages=setuptools.find_packages(),
install_requires=[
'gutenbergdammit==0.0.2',
'wordfilter'
],
dependency_links=[
'https://github.com/aparrish/gutenberg-dammit/archive/master.zip#egg=gutenbergdammit-0.0.2'
],
classifiers=[
'Development Status :: 3 - Alpha',
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
'Programming Language :: Python :: 3',
],
platforms='any',
)