-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
44 lines (36 loc) · 796 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
setup(name='paythru',
version='0.7',
description='paythru.to site code',
author='Taylor Gerring',
author_email='taylor.gerring@gmail.com',
url='http://paythru.to',
install_requires=[
'dnspython',
'web.py',
'mimerender',
'MySQL-python',
'python-whois',
'pyyaml',
'beautifulsoup4',
'jsonrpc',
'twitter',
'twilio'
],
packages=[
'lib',
'lib/bitcoinrpc'
],
py_modules = [
'paythru',
'api',
'main',
'setup'
],
scripts = [
],
package_data = {
'lib': ['db_mysql.sql']
}
)