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