-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 755 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 755 Bytes
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
# encoding: utf-8
from setuptools import setup
from plugnplay import __version__
import os
BASE_PATH = os.path.dirname(__file__)
setup(
name="plugnplay",
version=__version__,
url="http://github.com/daltonmatos/plugnplay",
license="GPLv2",
description="A Generic plug-in system for python",
author="Dalton Barreto",
author_email="daltonmatos@gmail.com",
long_description=open(os.path.join(BASE_PATH, 'README.rst')).read(),
packages=['plugnplay'],
classifiers=[
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Application Frameworks"
])