-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
36 lines (35 loc) · 1.15 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
from setuptools import setup, find_packages
setup(
name='facebook-online-friend-tracker',
version='2.0.1',
description='This tool tracks the number of online friends a user has on Facebook at any given time.',
long_description=open('README.rst').read(),
url='https://github.com/bhamodi/facebook-online-friend-tracker',
author='Baraa Hamodi',
author_email='bhamodi@edu.uwaterloo.ca',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet :: Log Analysis',
'Topic :: Software Development',
'Topic :: Utilities',
],
keywords='facebook online friend tracker python scraper selenium analysis optimization',
packages=find_packages(),
install_requires=[
'chromedriver_installer>=0.0.4',
'selenium>=3.0.2',
],
entry_points={
'console_scripts': [
'facebook-online-friend-tracker=src:main',
],
},
)