forked from fishilico/kaoz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (53 loc) · 1.71 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
import os
import re
import sys
root_dir = os.path.abspath(os.path.dirname(__file__))
def get_version(package_name):
version_re = re.compile(r"^__version__ = [\"']([\w_.-]+)[\"']$")
package_components = package_name.split('.')
path_components = package_components + ['__init__.py']
with open(os.path.join(root_dir, *path_components)) as f:
for line in f:
match = version_re.match(line[:-1])
if match:
return match.groups()[0]
return '0.1.0'
PACKAGE = 'kaoz'
setup(
name='kaoz',
version=get_version(PACKAGE),
author='Binet Réseau',
author_email='br@eleves.polytechnique.fr',
description="A simple IRC notifier bot.",
license='MIT',
keywords=['irc', 'notification', 'bot'],
url='http://github.com/BinetReseau/Kaoz',
download_url='http://pypi.python.org/pypi/kaoz/',
packages=find_packages(),
install_requires=[
'distribute',
'irc>=5.0.1',
],
scripts=[
'bin/kaoz',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Topic :: Communications :: Chat :: Internet Relay Chat',
'Topic :: System :: Logging',
'Topic :: System :: Monitoring',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
tests_require = ['unittest2'] if sys.version_info < (3, ) else [],
test_suite='kaoz.tests',
use_2to3=True,
include_package_data=True,
)