-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (41 loc) · 1.34 KB
/
setup.py
File metadata and controls
45 lines (41 loc) · 1.34 KB
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
"""Scalable Admin package setup."""
import os
import re
from setuptools import setup
PACKAGE_NAME = "scalable_admin"
HERE = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(HERE, "README.md")) as fp:
README = fp.read()
with open(os.path.join(HERE, PACKAGE_NAME, "const.py")) as fp:
VERSION = re.search('__version__ = "([^"]+)"', fp.read()).group(1)
setup(
name=PACKAGE_NAME,
author="Bryce Boe",
author_email="bbzbryce@gmail.com",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
description=(
"A command line tool to facilitate the administration of "
"the scalable Internet services course taught at UCSB and "
"UCLA."
),
entry_points={
"console_scripts": ["{0}={0}.command_line:main".format(PACKAGE_NAME)]
},
install_requires=[
"botocore >=1.7, <2",
"docopt >=0.6.2, <1",
"github3.py >=1.0.0",
"uritemplate.py <3",
],
keywords=["course administration", "cloud formation templates", "aws", "github"],
license="Simplified BSD License",
long_description=README,
packages=[PACKAGE_NAME],
url="https://github.com/scalableinternetservices/utils",
version=VERSION,
)