]> git.scottworley.com Git - paperdoorknob/blame - setup.py
fetch: Send User-Agent header
[paperdoorknob] / setup.py
CommitLineData
92b11a10
SW
1from setuptools import setup
2
3setup(
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",
705973e7 10 py_modules=[
23f31879 11 'args',
8be20b9d 12 'domfilter',
705973e7 13 'fetch',
e6adf6ce 14 'glowfic',
929db576 15 'htmlfilter',
91fe9916 16 'images',
705973e7 17 'paperdoorknob',
23f31879 18 'spec',
79631507 19 'texify',
705973e7 20 ],
92b11a10
SW
21 license="GPL-3.0",
22 entry_points={'console_scripts': ['paperdoorknob = paperdoorknob:main']},
23)