forked from smartfile/python-librsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 950 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
29
30
31
32
33
34
#!/bin/env python
import os
from distutils.core import setup
name = 'python-librsync'
version = '0.1'
release = '5'
versrel = version + '-' + release
long_description = open(os.path.join(os.path.dirname(__file__), 'README.rst'), 'r').read()
setup(
name = name,
version = versrel,
description = 'Python ctypes wrapper for librsync.',
long_description = long_description,
author = 'Ben Timby',
author_email = '[email protected]',
maintainer = 'Ben Timby',
maintainer_email = '[email protected]',
url = 'http://github.com/smartfile/' + name + '/',
license = 'MIT',
requires = [],
packages = [
"librsync",
],
classifiers = (
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
),
)