-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (31 loc) · 866 Bytes
/
setup.py
File metadata and controls
executable file
·37 lines (31 loc) · 866 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
34
35
36
37
#!/usr/bin/env python
from setuptools import setup, find_packages
version = "0.0.3dev"
url = "https://bitbucket.org/prologic/irclogger"
download_url = "{0:s}/get/{1:s}.zip".format(url, version)
setup(
name="irclogger",
version=version,
description="Python IRC Logger Daemon",
long_description="{0:s}\n\n{1:s}".format(
open("README.rst", "r").read(),
open("CHANGES.rst", "r").read()
),
author="James Mills",
author_email="James Mills, prologic at shortcircuit dot net dot au",
url=url,
download_url=download_url,
classifiers=[],
license="MIT",
keywords="Python IRC Logger Daemon",
platforms="POSIX",
packages=find_packages("."),
install_requires=[
"circuits",
],
entry_points={
"console_scripts": [
"irclogger=irclogger.main:main"
]
}
)