-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (44 loc) · 1.1 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
import os
from setuptools import setup
VERSION = "2.0.0"
REQUIRES = [
"cryptography",
"docopt",
"pyyaml",
"requests",
]
TESTS_REQUIRE = [
"nox",
"pytest",
"pytest-cover",
]
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, "README.md")).read()
except IOError:
README = CHANGES = ""
setup(
name="droplets",
version=VERSION,
description="Library for building Ansible dynamic inventories for Digital Ocean.",
long_description=README,
long_description_content_type="text/markdown",
author="Chris Rossi",
author_email="[email protected]",
url="http://github.com/chrisrossi/droplets",
license="BSD-derived (http://www.repoze.org/LICENSE.txt)",
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"License :: Repoze Public License",
],
install_requires=REQUIRES,
extras_require={
"testing": TESTS_REQUIRE,
},
entry_points={
"console_scripts": [
"secrets = droplets.secrets:secrets_cli",
]
},
)