-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
46 lines (44 loc) · 1.48 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
43
44
45
46
from setuptools import setup
with open('README.rst', encoding='utf8') as file:
long_description = file.read()
setup(
name='botblocker',
version='1.1.3',
author='Yan Orestes',
author_email='[email protected]',
packages=['botblocker'],
description='Python script to identify and block your bot followers on Twitter',
long_description=long_description,
url='https://github.com/yanorestes/botblocker',
download_url='https://github.com/yanorestes/botblocker/archive/1.1.3.zip',
license='MIT',
keywords='twitter bot blocker tweepy botometer',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Natural Language :: Portuguese (Brazilian)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet',
],
python_requires='>= 3.4',
entry_points={
'console_scripts':['botblocker=botblocker.__init__:main']
},
dependency_links=['https://github.com/tweepy/tweepy/archive/master.zip#egg=tweepy-3.6.0'],
install_requires=[
'tweepy==3.6.0',
'botometer',
'huepy',
'pyperclip',
'colorama;platform_system=="Windows"'
],
)