]> git.scottworley.com Git - paperdoorknob/blob - setup.py
Reduce the number of places we keep our version number: 3 → 2
[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 'texify',
22 'version',
23 ],
24 license="GPL-3.0",
25 entry_points={'console_scripts': ['paperdoorknob = paperdoorknob:main']},
26 )