-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 813 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 813 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, find_packages
import robosync
setup(
name='robosync',
version=robosync.__version__,
url='https://github.com/rbn920/robosync/',
license='MIT',
author='Robert Nelson',
test_require=['unittest'],
author_email='robertb.nelson@gmail.com',
description='Sync with Python and robocopy',
long_description='',
packages=['robosync'],
include_package_data=True,
platforms='windows',
test_suite='robosync.test.test_robosync',
classifiers=['Programming Language :: Python',
'Development Status :: 3 - Alpha',
'Natural Language :: English',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT',
'Environment :: Win32 (MS Windows)']
)