-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (36 loc) · 1.18 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
from setuptools import setup, find_packages
version = '0.1.10'
setup(
name="helga-versionone",
version=version,
description=('VersionOne interface for helga chat bot'),
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Communications :: Chat :: Internet Relay Chat',
'Framework :: Twisted',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='helga versionone',
author='Aaron McMillin',
author_email='[email protected]',
url='https://github.com/aarcro/helga-versionone',
download_url='https://github.com/aarcro/helga-versionone/tarball/' + version,
license='MIT',
packages=find_packages(),
py_modules=['helga_versionone'],
install_requires=[
'v1pysdk-unofficial',
'oauth2client',
'expiringdict',
],
entry_points=dict(
helga_plugins=[
'versionone = helga_versionone:versionone'
],
),
)