-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (23 loc) · 839 Bytes
/
setup.py
File metadata and controls
33 lines (23 loc) · 839 Bytes
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
"""Our python packaging stuff."""
from os.path import abspath, dirname, join, normpath
from setuptools import setup
setup(
# Basic package information:
name = 'stormy',
version = '0.2',
scripts = ('stormy', ),
# Packaging options:
zip_safe = False,
include_package_data = True,
# Package dependencies:
install_requires = ['docopt>=0.6.1', 'stormpath-sdk==1.0.0.beta'],
# Metadata for PyPI:
author = 'Randall Degges',
author_email = 'r@rdegges.com',
license = 'UNLICENSE',
url = 'https://github.com/rdegges/stormy',
keywords = 'user authentication auth security api stormpath bcrypt utility',
description = 'A CLI tool for managing (and working with) Stormpath.',
long_description = open(normpath(join(dirname(abspath(__file__)),
'README.md'))).read()
)