forked from gentoo/eclean-kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (28 loc) · 931 Bytes
/
setup.py
File metadata and controls
executable file
·33 lines (28 loc) · 931 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
26
27
28
29
30
31
32
33
#!/usr/bin/python
# vim:fileencoding=utf-8
# (c) 2011 Michał Górny <mgorny@gentoo.org>
# Released under the terms of the 2-clause BSD license.
from setuptools import setup, find_packages
from ecleankernel import __version__
setup(
name='eclean-kernel',
version=__version__,
author='Michał Górny',
author_email='mgorny@gentoo.org',
url='http://github.com/mgorny/eclean-kernel',
packages=find_packages(exclude=['test']),
entry_points={
'console_scripts': [
'eclean-kernel=ecleankernel.__main__:setuptools_main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python :: 3 :: Only',
'Topic :: System :: Installation/Setup'
]
)