-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 772 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 772 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
import os
from setuptools import setup, find_packages
import distutils
import distutils.command.build
from distutils.core import setup, Extension
setup(name='collapse',
version='0.0.1',
description='an irc bot',
url='http://github.com/lysol/collapse',
author='Derek Arnold',
author_email='derek@derekarnold.net',
license='ISC',
install_requires=[
'irc==15.0.5',
'tweepy',
'requests',
'requests-futures',
'unidecode',
'Babel',
'inotify'
],
zip_safe=False,
packages=find_packages(),
package_dir={'collapse': 'collapse'},
package_data={
'collapse': ['collapse/*.json'],
},
include_package_data=True)