-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 790 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 790 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
"""
Set up back for your environment
back <http://github.com/jmullan/back>
"""
from setuptools import setup
import back.back
setup(
name="back",
version=back.back.__version__,
description="Semi-autmoatic rsync configuration",
license="GPLv3+",
author="Jesse Mullan",
author_email="jmullan@gmail.com",
url="http://github.com/jmullan/back",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: " "GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
packages=["back"],
py_modules=["back"],
scripts=["bin/back"],
)