-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (24 loc) · 955 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (24 loc) · 955 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='PhotostreamPy',
version='1.0.1',
url='https://github.com/amboxer21/PhotoStreamPy',
license='GPL-3.0',
author='Anthony Guevara',
description="Downloads all of your Facebook photos to your Linux desktop.",
packages=find_packages(exclude=['tests']),
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Environment :: Console',
'Environment :: No Input/Output (Daemon)',
'Programming Language :: Python :: 2.7',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: GNU General Public License (GPL)',
],
zip_safe=True,
setup_requires=['wget','selenium'],)