-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
42 lines (37 loc) · 1.13 KB
/
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
VERSION = '1.3.1'
DESCRIPTION = 'Python package for making twitter bot with less code'
setup(
name="simpletwitter",
version=VERSION,
author="Abipravi",
author_email="darkparadise877@gmail.com",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(),
keywords=['python', 'first package', 'twitter',
'twitterbot_abipravi', 'make you own bot'],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
project_urls={
'Homepage': 'https://github.com/pravee42/Twitter_bot_module',
},
install_requires=[
'APScheduler',
'selenium',
'requests',
'tweepy',
'webdriver-manager',
'lxml',
'bs4',
]
)