-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (27 loc) · 973 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from pluginloader import __version__, __description__
def read_description():
with open('README.rst') as fd:
return fd.read()
setup(name='pluginloader',
version=__version__,
description=__description__,
long_description=read_description(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
keywords='plugin,plugins,extension,extensions,engine,loader',
author='Miguel Ángel García',
url='https://github.com/magmax/python-pluginloader',
license='MIT',
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=False,
install_requires=[],
)