-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
28 lines (27 loc) · 845 Bytes
/
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
from setuptools import setup
setup(
name='pypush',
version='1.3',
description='Continuously push local changes to a remote server',
author='Vivek Jain',
author_email='pypush@vivekja.in',
url='/~https://github.com/viveksjain/pypush',
classifiers=[
'Programming Language :: Python',
'Environment :: Console',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: Unix',
'Topic :: Internet',
'Topic :: System',
'Topic :: Utilities'
],
py_modules=['pypush'],
install_requires=['watchdog >= 0.8'],
entry_points={
'console_scripts': ['pypush=pypush:main']
}
)