-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (22 loc) · 834 Bytes
/
setup.py
File metadata and controls
executable file
·25 lines (22 loc) · 834 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
#!/usr/bin/env python
import sys
try:
from setuptools import setup
except ImportError:
print "Ansigenome needs setuptools in order to build. " + \
"Install it using your package manager " + \
"(usually python-setuptools) or via pip (pip install setuptools)."
sys.exit(1)
setup(name="ansigenome",
version=open("VERSION", "r").read()[:-1],
author="Nick Janetakis",
author_email="nick.janetakis@gmail.com",
url="https://github.com/nickjj/ansigenome",
description="A tool to help you gather information and " +
"manage your Ansible roles.",
license="GPLv3",
install_requires=["jinja2", "PyYAML", "setuptools"],
packages=["ansigenome"],
package_data={"ansigenome": ["VERSION", "data/*"]},
scripts=["bin/ansigenome"],
data_files=[])