-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 890 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
from setuptools import setup, find_packages
setup(
name="twitter_bot_type_classification",
version="0.1",
author="infinityofspace",
url="https://github.com/infinityofspace/twitter-bot-type-classification",
description="Generate twitter database, calculate features and classify user",
license="MIT",
packages=find_packages(),
python_requires=">=3.7",
include_package_data=True,
install_requires=[
"requests>=2.24.0",
"numpy>=1.19.1",
"tweepy>=3.9.0",
"nltk>=3.5",
"scikit-learn>=0.23.2",
"jupyterlab>=2.2.4",
"plotly>=4.9.0",
"matplotlib>=3.3.0",
],
entry_points={
'console_scripts': ["twitter-bot-generate=twitter_bot_type_classification.generate_db:main",
"twitter-bot-features=twitter_bot_type_classification.calc_features:main"]
}
)