Mercurial > hg > toolbox
comparison setup.py @ 4:1b2f9d3948d7
py3
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Tue, 03 Nov 2020 10:05:32 -0800 |
| parents | 11173b4a7ca8 |
| children | bf5386d3c7e4 |
comparison
equal
deleted
inserted
replaced
| 3:11173b4a7ca8 | 4:1b2f9d3948d7 |
|---|---|
| 1 from setuptools import setup | 1 from setuptools import setup |
| 2 | 2 |
| 3 try: | 3 try: |
| 4 description = file('README.txt').read() | 4 description = open('README.txt').read() |
| 5 except IOError: | 5 except IOError: |
| 6 description = '' | 6 description = '' |
| 7 | 7 |
| 8 version = "0.4" | 8 version = "0.4" |
| 9 | 9 |
| 25 version=version, | 25 version=version, |
| 26 description="a place to list links + tools", | 26 description="a place to list links + tools", |
| 27 long_description=description, | 27 long_description=description, |
| 28 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | 28 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
| 29 author='Jeff Hammel', | 29 author='Jeff Hammel', |
| 30 author_email='jhammel@mozilla.com', | 30 author_email='k0scist@gmail.com', |
| 31 url='http://k0s.org/hg/toolbox/', | 31 url='http://k0s.org/hg/toolbox/', |
| 32 license="MPL", | 32 license="MPL", |
| 33 packages=['toolbox'], | 33 packages=['toolbox'], |
| 34 include_package_data=True, | 34 include_package_data=True, |
| 35 zip_safe=False, | 35 zip_safe=False, |
| 41 toolbox-serve = toolbox.factory:main | 41 toolbox-serve = toolbox.factory:main |
| 42 | 42 |
| 43 [paste.app_factory] | 43 [paste.app_factory] |
| 44 toolbox = toolbox.factory:paste_factory | 44 toolbox = toolbox.factory:paste_factory |
| 45 """, | 45 """, |
| 46 ) | 46 ) |
