forked from maxcountryman/simpleirc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (36 loc) · 1.11 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
'''
simpleirc
---------
A simple IRC library.
Links
`````
* `development version <https://github.com/maxcountryman/simpleirc>`_
'''
import os
import sys
from simpleirc import __version__
from setuptools import find_packages, setup
if sys.argv[-1] == 'test':
status = os.system('make check')
status >>= 8
sys.exit(status)
setup(name='simpleirc',
version=__version__,
url='https://github.com/maxcountryman/simpleirc',
license='BSD',
author='Max Countryman',
author_email='[email protected]',
description='A simple IRC library.',
long_description=__doc__,
zip_safe=False,
platforms='any',
packages=find_packages(),
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'),
entry_points = {'console_scripts':
['simpleirc = simpleirc.connection:run']})