-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
28 lines (27 loc) · 840 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
from distutils.core import setup
setup(
name="twied",
version="0.2.4",
description="Twitter event detection toolkit.",
author="Humphrey Shotton",
author_email="[email protected]",
url="https://github.com/Humpheh/twied",
packages=[
"twied",
"twied.eventec",
"twied.labelprop",
"twied.multiind",
"twied.multiind.indicators",
"twied.multiind.interfaces",
"twied.twicol"
],
package_dir={
'twied': 'src/twied',
'twied.eventec': 'src/twied/eventec',
'twied.labelprop': 'src/twied/labelprop',
'twied.multiind': 'src/twied/multiind',
'twied.multiind.indicators': 'src/twied/multiind/indicators',
'twied.multiind.interfaces': 'src/twied/multiind/interfaces',
'twied.twicol': 'src/twied/twicol',
}
)