-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (26 loc) · 1.05 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·26 lines (26 loc) · 1.05 KB
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
#!/usr/bin/env python
from distutils.core import setup
setup(
name='lurklib',
packages=['lurklib'],
version='0.9',
author='LK-',
license='GPL V3',
author_email='lk07805@gmail.com',
description='Event-driven IRC library.',
url='https://github.com/LK-/lurklib/',
keywords=['irc', 'internet relay chat'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved ::' + \
' GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development' + \
' :: Libraries :: Python Modules'
],
long_description=open('README.rst')
)