-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 809 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 809 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
from setuptools import setup
setup(name='sync',
description='Sync files of 2 different directories',
version='0.1.0',
author='Harsha Srinivas',
author_email='95harsha95@gmail.com',
packages=['sync'],
entry_points={
'console_scripts': ['sync=sync:main'],
},
url='https://github.com/harshasrinivas/sync/',
keywords=[ 'CLI', 'python'],
classifiers=[
'Operating System :: POSIX',
'Environment :: Console',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
],)