-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (41 loc) · 1.23 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
import sys
from setuptools import setup
authors = [
'Fabio Menegazzo <[email protected]>',
'Bruno Oliveira <[email protected]>',
]
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Utilities',
]
py_versions = ['2', '2.6', '2.7', '3.4']
classifiers += [
'Programming Language :: Python :: %s' % x
for x in py_versions
]
requirements = ['bender-hooks', 'pyyaml']
if sys.version_info[:2] < (3, 2):
requirements += ['futures']
setup(
name='bender',
description='bender: general chat bot',
version='0.1.0',
url='https://github.com/bender-bot/bender',
license='LGPLv3',
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
author=', '.join(authors),
classifiers=classifiers,
install_requires=requirements,
packages=['bender', 'bender.backbones', 'bender.scripts'],
entry_points={
'console_scripts': [
'bender = bender._main:main',
],
'pytest11': ['pytest-bender = bender.testing']
}
)