Do not package tests package with main project
This commit is contained in:
parent
3c0eefd0d3
commit
75c2e0d242
10
setup.py
10
setup.py
@ -1,5 +1,11 @@
|
||||
import setuptools
|
||||
|
||||
# ========== Constants ==========
|
||||
PACKAGES = ["packaging_scripts"]
|
||||
SCRIPTS = ["bin/addpkg", "bin/delpkg", "bin/fqo"]
|
||||
|
||||
|
||||
# ========== Functions ==========
|
||||
with open("README.rst", "r") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
@ -12,8 +18,8 @@ setuptools.setup(
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/plain",
|
||||
url="",
|
||||
packages=setuptools.find_packages(),
|
||||
scripts=["bin/addpkg", "bin/delpkg", "bin/fqo"],
|
||||
packages=PACKAGES,
|
||||
scripts=SCRIPTS,
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
|
Loading…
x
Reference in New Issue
Block a user