forked from pacurromon/wp-download
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 1.39 KB
/
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
35
36
37
38
39
# -*- coding: UTF-8 -*-
#!/usr/bin/env python
import os
from distutils.core import setup
from glob import glob
setup(name='wp-download',
version='0.1.2b',
description='Wikipedia database dump downloader',
author='Wolodja Wentland',
author_email='[email protected]',
url='http://github.com/babilen/wp-download',
license='GPLv3',
scripts=['scripts/wp-download'],
long_description = open('doc/description.rst').read(),
packages=['wp_download'],
package_dir={'': 'lib'},
data_files=[
('share/doc/wp-download/examples/', ['examples/wpdownloadrc.sample']),
('share/doc/wp-download/doc', ['doc/Makefile','doc/README']),
('share/doc/wp-download/doc/rst', ['doc/rst/index.rst',
'doc/rst/conf.py']),
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Topic :: Database',
'Topic :: Scientific/Engineering',
]
)