-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·35 lines (34 loc) · 1.17 KB
/
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
30
31
32
33
34
from setuptools import setup, find_packages
setup(
name = 'dp2ppgen',
author = 'David Maranhao',
author_email = '[email protected]',
license = 'MIT',
description = 'Translates pgdp.org formatted text files into ppgen syntax.',
packages = ['dp2ppgen'], # this must be the same as the name above
package_data = {'': ['header.txt','footer.txt']},
version = '0.2.0',
url = 'https://github.com/davem2/dp2ppgen',
download_url = 'https://github.com/davem2/dp2ppgen/tarball/0.2.0',
keywords = ['text', 'processing', 'book', 'ebook', 'gutenberg', 'distributedproofreaders'],
entry_points = {
'console_scripts': [
'dp2ppgen = dp2ppgen.dp2ppgen:main',
],
},
install_requires = [
'docopt >= 0.6.1',
'docutils >= 0.12',
'pillow >= 2.7.0',
],
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Text Processing",
"Topic :: Text Processing :: Markup",
],
)