-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (32 loc) · 1.08 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
37
'''
Created on Dec 12, 2010
@author: falmarri
'''
from setuptools import setup
setup(
name = "scpy",
version = "1.1.5",
packages = ['scpy'],
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires = ['pyinotify', 'pexpect'],
entry_points = {
'console_scripts' : [
'scpy = scpy:main',
],
},
# metadata for upload to PyPI
author = "Falmarri",
author_email = "[email protected]",
description = "File/Directory syncing over scp",
long_description=open('README.rst','r').read(),
license = "GPL",
keywords = "scp sync autosync",
url = "http://weaknweary.blogspot.com/2010/10/python-enhancement-to-scp.html", # project home page, if any
classifiers=['Topic :: System :: Networking',
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
'Topic :: Utilities',
]
# could also include long_description, download_url, classifiers, etc.
)