forked from Kazade/sleuth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 666 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 666 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
import os
from setuptools import setup
NAME = 'sleuth'
MODULES = ['sleuth']
DESCRIPTION = 'A minimal Python mocking library'
URL = "https://github.com/lukebpotato/sleuth"
LONG_DESCRIPTION = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
AUTHOR = 'Luke Benstead'
AUTHOR_EMAIL = 'kazade@gmail.com'
setup(
name=NAME,
version='0.1',
py_modules=MODULES,
# metadata for upload to PyPI
author=AUTHOR,
author_email=AUTHOR_EMAIL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
keywords=(
"python", "mock", "testing", "test",
"unittest", "monkeypatch", "patch", "stub"
),
url=URL
)