]>
Commit | Line | Data |
---|---|---|
92b11a10 SW |
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", | |
705973e7 | 10 | py_modules=[ |
23f31879 | 11 | 'args', |
705973e7 SW |
12 | 'fetch', |
13 | 'paperdoorknob', | |
23f31879 | 14 | 'spec', |
79631507 | 15 | 'texify', |
705973e7 | 16 | ], |
92b11a10 SW |
17 | license="GPL-3.0", |
18 | entry_points={'console_scripts': ['paperdoorknob = paperdoorknob:main']}, | |
19 | ) |