-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (32 loc) · 1.02 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
from setuptools import setup, find_packages
# https://packaging.python.org/guides/distributing-packages-using-setuptools/?highlight=setup.py#setup-py
# Distribute py wheels
# python3 setup.py bdist_wheel sdist
# twine check dist/*
# cd dist
# twine upload *
with open("README.md", "r") as f:
long_description = f.read()
with open("requirements.txt", "r") as f:
REQUIREMENTS = f.readlines()
VERSION = "0.0.1"
setup(
name="lestest",
version=VERSION,
description="Generate boilerplate unittests from given package.",
url="https://licenseware.io/",
author="Licenseware",
author_email="[email protected]",
license="",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=REQUIREMENTS,
packages=find_packages(where=".", exclude=["tests", "package", "app"]),
include_package_data=True,
package_data={"": ["*"]},
entry_points={
"console_scripts": [
"lestest=lestest.cli:cli_entrypoint",
],
},
)