Mercurial > hg > pyloader
view setup.py @ 97:5fc59dfa7aec
no more python2
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Mon, 27 May 2024 22:48:50 +0000 |
parents | 823c5c26fe66 |
children | d59f0425d705 |
line wrap: on
line source
import os from setuptools import setup try: here = os.path.dirname(os.path.abspath(__file__)) description = open(os.path.join(here, 'README.txt')).read() except IOError: description = '' version = "0.1.4" dependencies = [] setup(name='pyloader', version=version, description="Load python attributes from a string", long_description=description, classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers author='Jeff Hammel', author_email='k0scist@gmail.com', url='http://k0s.org/hg/pyloader', license='MPL', packages=['pyloader'], include_package_data=True, zip_safe=False, install_requires=dependencies, tests_require=['tox'], entry_points=""" # -*- Entry points: -*- [console_scripts] pyloader = pyloader.invoke:main """, )