-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (58 loc) · 1.94 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
# file: setup.py
import os
from setuptools import setup
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name='boxbrainiac',
version='0.1.2', # Semantic versioning MAJOR.MINOR.PATCH
description='Web application to manage box content, realm and location',
long_description=(read('README.md') + '\n\n'),
license="GPLv3+",
author='Christian Külker',
author_email='c@c8i.org',
url="https://github.com/ckuelker/boxbrainiac",
packages=['boxbrainiac'],
include_package_data=True,
package_data={'boxbrainiac': ['templates/*', 'static/css/*']},
python_requires='>=3.5',
# html, os, argparse, logging, subprocess, sys are standard
install_requires=[
'flask', # python3-flask
'pyyaml', # python3-yaml
'fuzzywuzzy', # python3-fuzzywuzzy
'python-Levenshtein', # python3-levenshtein
'gitpython', # python3-git for git
],
extras_require={
'build': [
'setuptools',
'wheel',
],
'test': [
'html5lib', # python3-html5lib
'flask', # python3-flask
'lxml', # python3-lxml
],
},
entry_points={
'console_scripts': [
'boxbrainiac = boxbrainiac.main:run_app',
]
},
classifiers=[
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
],
)