-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (24 loc) · 796 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
from setuptools import setup, find_packages
import os
version = '1.0~dev'
base = os.path.dirname(__file__)
readme = open(os.path.join(base, 'README.rst')).read()
changelog = open(os.path.join(base, 'CHANGELOG.rst')).read()
setup(name='docbucket',
version=version,
description='',
long_description=readme + '\n' + changelog,
classifiers=[],
keywords='dms django',
author='Antoine Millet',
author_email='[email protected]',
url='https://github.com/NaPs/Docbucket',
license='MIT',
data_files=(
('/etc/', ('etc/docbucket.conf',)),
),
scripts=['docbucketadm'],
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=[])