]> git.scottworley.com Git - paperdoorknob/blob - setup.py
ImageStore
[paperdoorknob] / setup.py
1 from setuptools import setup
2
3 setup(
4 name='paperdoorknob',
5 version='0.0.1',
6 description="Print glowfic",
7 author="Scott Worley",
8 author_email="scottworley@scottworley.com",
9 url="https://git.scottworley.com/paperdoorknob",
10 py_modules=[
11 'args',
12 'domfilter',
13 'fetch',
14 'htmlfilter',
15 'images',
16 'paperdoorknob',
17 'spec',
18 'texify',
19 ],
20 license="GPL-3.0",
21 entry_points={'console_scripts': ['paperdoorknob = paperdoorknob:main']},
22 )