-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
25 lines (23 loc) · 858 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
from distutils.core import setup
from sys import version_info as ver
if ver[0] < 3:
version = str(ver[0]) + '.' + str(ver[1])
sys.exit("""
Error: your Python version is %s, but chapterize requires at least
Python 3. Please upgrade your Python installation, or try using pip3
instead of pip.""" % version)
setup(
name = 'chapterize',
packages = ['chapterize'],
version = '0.1.6',
description = 'A tool for breaking etexts into chapters.',
author = 'Jonathan Reeve',
author_email = 'jon.reeve@gmail.com',
url = 'https://github.com/JonathanReeve/chapterize',
download_url = 'https://github.com/JonathanReeve/chapterize/tarball/0.1.6',
install_requires = ['Click'],
keywords = ['NLP', 'text', 'chapters'],
entry_points='''
[console_scripts]
chapterize = chapterize.chapterize:cli''',
)