]>
Commit | Line | Data |
---|---|---|
92b11a10 SW |
1 | from setuptools import setup |
2 | ||
e3b5fdf0 SW |
3 | from version import paperdoorknob_version |
4 | ||
92b11a10 SW |
5 | setup( |
6 | name='paperdoorknob', | |
e3b5fdf0 | 7 | version=paperdoorknob_version, |
92b11a10 SW |
8 | description="Print glowfic", |
9 | author="Scott Worley", | |
10 | author_email="scottworley@scottworley.com", | |
11 | url="https://git.scottworley.com/paperdoorknob", | |
705973e7 | 12 | py_modules=[ |
23f31879 | 13 | 'args', |
8be20b9d | 14 | 'domfilter', |
705973e7 | 15 | 'fetch', |
e6adf6ce | 16 | 'glowfic', |
929db576 | 17 | 'htmlfilter', |
91fe9916 | 18 | 'images', |
705973e7 | 19 | 'paperdoorknob', |
23f31879 | 20 | 'spec', |
131deef1 | 21 | 'texfilter', |
79631507 | 22 | 'texify', |
e3b5fdf0 | 23 | 'version', |
705973e7 | 24 | ], |
92b11a10 SW |
25 | license="GPL-3.0", |
26 | entry_points={'console_scripts': ['paperdoorknob = paperdoorknob:main']}, | |
27 | ) |