-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
41 lines (39 loc) · 1.03 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
import sys
from setuptools import setup, find_packages
import mut
REQUIRES = [
"boto3",
"certifi",
"cssselect",
"docopt",
"PyYAML",
"requests",
]
setup(
name="mut",
description="",
version=mut.__version__,
python_requires=">=3.5",
author="Andrew Aldridge",
author_email="i80and@foxquill.com",
license="Apache",
packages=find_packages(),
install_requires=REQUIRES,
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Build Tools",
"Topic :: Documentation",
"Topic :: Text Processing",
],
entry_points={
"console_scripts": [
"mut = mut.helper:main",
"mut-images = mut.build_images:main",
"mut-index = mut.index.main:main",
"mut-intersphinx = mut.intersphinx:main",
"mut-publish = mut.stage:main",
"mut-redirects = mut.redirects.redirect_main:main",
],
},
)