-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (29 loc) · 862 Bytes
/
setup.py
File metadata and controls
39 lines (29 loc) · 862 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
34
35
36
37
38
39
# -*- coding: utf-8 -*-
"""setup.py: setuptools control."""
import re
from setuptools import setup
version = re.search(
'^__version__\s*=\s*"(.*)"',
open('zoql/zoql.py').read(),
re.M
).group(1)
with open("README.md", "rb") as f:
long_descr = f.read().decode("utf-8")
setup(
name = "cmdline-zoql",
packages = ["zoql"],
entry_points = {
"console_scripts": ['zoql = zoql.zoql:main']
},
version = version,
description = "Python command line application bare bones template.",
long_description = long_descr,
author = "Bo Laurent",
author_email = "bo@bolaurent.com",
url = "",
install_requires=[
"cmd2",
"zuora_restful_python==0.15"
],
dependency_links=['https://github.com/bolaurent/zuora_restful_python/tarball/master#egg=zuora_restful_python-0.15']
)