forked from dsoprea/PySvn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 938 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
import os.path
import setuptools
import svn
_APP_PATH = os.path.dirname(svn.__file__)
with open(os.path.join(_APP_PATH, 'resources', 'README.rst')) as f:
long_description = f.read()
with open(os.path.join(_APP_PATH, 'resources', 'requirements.txt')) as f:
install_requires = list(map(lambda s: s.strip(), f.readlines()))
setuptools.setup(
name='svn',
version=svn.__version__,
description="Intuitive Subversion wrapper.",
long_description=long_description,
classifiers=[],
keywords='svn subversion',
author='Dustin Oprea',
author_email='[email protected]',
url='https://github.com/dsoprea/PySvn',
license='GPL 2',
packages=setuptools.find_packages(exclude=['test']),
include_package_data=True,
zip_safe=False,
package_data={
'svn': ['resources/README.rst',
'resources/requirements.txt'],
},
install_requires=install_requires,
)