-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·68 lines (54 loc) · 1.64 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#! /usr/bin/env python
# -*- coding: utf-8 -*-
#
# Interpreter version: python 2.7
#
# Imports =====================================================================
from setuptools import setup
from setuptools import find_packages
from docs import getVersion
# Variables ===================================================================
CHANGELOG = open('CHANGELOG.rst').read()
LONG_DESCRIPTION = "\n\n".join([
open('README.rst').read(),
open('CONTRIBUTORS.rst').read(),
CHANGELOG
])
# Actual setup definition =====================================================
setup(
name='wa-kat',
version=getVersion(CHANGELOG),
description="Web page analyzator for czech webarchive.",
long_description=LONG_DESCRIPTION,
url='https://github.com/WebArchivCZ/WA-KAT',
author='Bystroushaak',
author_email='bystrousak@kitakitsune.org',
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
],
license='MIT',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
scripts=[
"bin/wa_kat_server.py",
"bin/wa_kat_build_conspects.py",
"bin/wa_kat_structured_logger.py",
"bin/wa_kat_build_keyword_index.py",
],
install_requires=open("requirements.txt").read().splitlines(),
extras_require={
"test": [
"pytest",
],
"docs": [
"sphinx",
"sphinxcontrib-napoleon",
]
}
)