-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (25 loc) · 869 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (25 loc) · 869 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
from distutils.core import setup
from os import path
from glob import glob
def get_modules():
objdir = path.join(path.dirname(__file__),'bbot/*.py')
mods=[]
for file in glob(objdir):
name = path.splitext(path.basename(file))[0]
if name == '__init__':
continue
mods.append("bbot." + name)
return mods
setup(name="bbot",
version="0.1",
packages = ['bbot'],
py_modules = get_modules(),
scripts = ['bin/bbot-cli.py'],
author = ['Derrick Karimi'],
author_email = [ 'derrick.karimi@gmail.com' ],
maintainer = ['Derrick Karimi'],
maintainer_email = ['derrick.karimi@gmail.com'],
description = ['bbot'],
url = ['https://github.com/AlwaysTraining/bbot'],
download_url = ['https://github.com/AlwaysTraining/bbot'],
install_requires=['pexpect <= 2.4'])