-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (39 loc) · 1.03 KB
/
setup.py
File metadata and controls
45 lines (39 loc) · 1.03 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
desc = """Behavioral Languages for Online Characterization (BLOC): Languages for Modeling Social Media Account Behaviors."""
__appversion__ = None
#__appversion__, defined here
exec(open('bloc/version.py').read())
setup(
name='twitterbloc',
version=__appversion__,
description=desc,
long_description='See: https://github.com/anwala/bloc',
author='Alexander C. Nwala',
author_email='acnwala@wm.edu',
url='https://github.com/anwala/bloc',
packages=find_packages(),
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
package_data={
'bloc': [
'./symbols.json'
]
},
install_requires=[
'numpy',
'osometweet',
'requests-oauthlib',
'scipy',
'scikit-learn',
'textblob',
'urllib3<2.0'
],
scripts=[
'bin/bloc'
]
)