-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (31 loc) · 1.04 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
from setuptools import setup, find_packages
requires = [
'twisted', # foxbot.py
'requests', # plugins/quotes.py
#'pywapi', # plugins/weather.py
'beautifulsoup4', # plugins/urinfo.py
'hurry.filesize', # plugins/urinfo.py
]
setup(
name = 'foxbot',
version = '0.0.1',
description = 'foxbot | the dynamic plugin IRC bot',
keywords = 'foxbot IRC bot dynamic plugin',
author = 'Russell Ballestrini',
author_email = '[email protected]',
url = 'https://bitbucket.org/russellballestrini/foxbot',
platforms = ['All'],
license = 'MIT',
py_modules = ['foxbot'],
include_package_data = True,
install_requires = requires,
long_description = open('README.rst').read(),
entry_points = {
'console_scripts': [
'foxbot = foxbot:main',
],
},
)
# setup keyword args: http://peak.telecommunity.com/DevCenter/setuptools
# built and uploaded to pypi with this:
# python setup.py sdist bdist_egg register upload