forked from thekindlyone/fbadmin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (27 loc) · 873 Bytes
/
setup.py
File metadata and controls
27 lines (27 loc) · 873 Bytes
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
import os
try:
import pypandoc
description=pypandoc.convert('readme.md','rst')
except:
description=''
setup(name='fbadmin',
version='0.1.0.5',
description='A python library to automate facebook group administration',
long_description=description,
url='https://github.com/thekindlyone/fbadmin',
author='thekindlyone',
author_email='dodo.dodder@gmail.com',
license='GNU GPL v2',
packages=['fbadmin'],
install_requires=[
'selenium',
],
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7"
],
zip_safe=False)