-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 880 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 880 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
from setuptools import find_packages
import setuptools
import fakear
with open("README.md", "r") as readme:
long_description = readme.read()
setuptools.setup(
name = "fakear",
version = "0.1.2",
author = "Franck LOURME",
author_email = "flourme@scaleway.com",
description = "A Shell-command faker for Python Unit Testing",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "",
packages = find_packages(),
install_requires = [
"pyyaml",
"voluptuous"
],
classifiers = [
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux"
]
)