Codebase list straight.plugin / run/0157272e-e1de-4126-a73e-66c959008cbe/main setup.py
run/0157272e-e1de-4126-a73e-66c959008cbe/main

Tree @run/0157272e-e1de-4126-a73e-66c959008cbe/main (Download .tar.gz)

setup.py @run/0157272e-e1de-4126-a73e-66c959008cbe/mainraw · history · blame

#!/usr/bin/env python

from setuptools import setup, find_packages

INSTALL_REQUIRES = []

try:
    import importlib
except ImportError:
    INSTALL_REQUIRES.append('importlib')

setup(name='straight.plugin',
    version='1.4.1',
    description='A simple namespaced plugin facility',
    author='Calvin Spealman',
    author_email='ironfroggy@gmail.com',
    url='https://github.com/ironfroggy/straight.plugin',
    packages=find_packages(),
    namespace_packages=['straight'],
    install_requires=INSTALL_REQUIRES,
    classifiers=[
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 3',
        'Environment :: Plugins',
    ]
)