forked from ChrisZieba/LemonSync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 1001 Bytes
/
setup.py
File metadata and controls
33 lines (32 loc) · 1001 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
28
29
30
31
32
33
from setuptools import setup
setup(
name="lemonsync",
version="0.1.19",
author='LemonStand',
author_email='chris@lemonstand.com',
url='http://pypi.python.org/lemonstand/lemonsync',
download_url='https://github.com/lemonstand/lemonsync',
packages=['lemonsync'],
description='LemonSync will listen for changes in the folder you configure, and automatically push updates to your store theme.',
install_requires=[
"watchdog==0.7.1",
"requests==2.2.1",
"boto==2.27.0",
"colorama==0.3.1",
'pathtools==0.1.1'
],
entry_points={
'console_scripts': [
'lemonsync = lemonsync.LemonSync:main',
]
},
license = "MIT",
platforms = "Posix; MacOS X; Windows",
classifiers = ["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Internet",
"Programming Language :: Python :: 2.7"
]
)