Mercurial > hg > pyloader
annotate setup.py @ 91:823c5c26fe66
toxify
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 12 Apr 2017 12:47:44 -0700 |
parents | fa2c4db30e81 |
children | d59f0425d705 |
rev | line source |
---|---|
0 | 1 import os |
90 | 2 from setuptools import setup |
0 | 3 |
4 try: | |
5 here = os.path.dirname(os.path.abspath(__file__)) | |
90 | 6 description = open(os.path.join(here, 'README.txt')).read() |
7 except IOError: | |
0 | 8 description = '' |
9 | |
90 | 10 version = "0.1.4" |
0 | 11 dependencies = [] |
12 | |
13 setup(name='pyloader', | |
14 version=version, | |
15 description="Load python attributes from a string", | |
16 long_description=description, | |
17 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | |
18 author='Jeff Hammel', | |
90 | 19 author_email='k0scist@gmail.com', |
20 url='http://k0s.org/hg/pyloader', | |
0 | 21 license='MPL', |
90 | 22 packages=['pyloader'], |
0 | 23 include_package_data=True, |
24 zip_safe=False, | |
25 install_requires=dependencies, | |
91 | 26 tests_require=['tox'], |
0 | 27 entry_points=""" |
28 # -*- Entry points: -*- | |
4
5ce55f6c8964
invokation works in the barest sense
Jeff Hammel <jhammel@mozilla.com>
parents:
2
diff
changeset
|
29 [console_scripts] |
5ce55f6c8964
invokation works in the barest sense
Jeff Hammel <jhammel@mozilla.com>
parents:
2
diff
changeset
|
30 pyloader = pyloader.invoke:main |
0 | 31 """, |
32 ) |