59 lines
1.2 KiB
Python
59 lines
1.2 KiB
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import setuptools
|
||
|
|
||
|
|
||
|
with open("README.md", "r") as fh:
|
||
|
long_description = fh.read()
|
||
|
|
||
|
|
||
|
setuptools.setup(
|
||
|
name="wolkje_files",
|
||
|
version="0.1",
|
||
|
author="",
|
||
|
author_email="",
|
||
|
description="…",
|
||
|
long_description=long_description,
|
||
|
long_description_content_type="text/markdown",
|
||
|
#scripts=["bin/…"],
|
||
|
|
||
|
url="…",
|
||
|
project_urls={
|
||
|
"Source": "…",
|
||
|
"Change log": "…/-/blob/master/CHANGELOG.md",
|
||
|
"Bug tracker": "…/-/issues",
|
||
|
},
|
||
|
|
||
|
classifiers=[
|
||
|
"Programming Language :: Python :: 3",
|
||
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
||
|
"Operating System :: OS Independent",
|
||
|
"Natural Language :: English",
|
||
|
"Environment :: Console",
|
||
|
|
||
|
"Development Status :: 1 - Planning",
|
||
|
#"Development Status :: 2 - Pre-Alpha",
|
||
|
#"Development Status :: 3 - Alpha",
|
||
|
#"Development Status :: 4 - Beta",
|
||
|
#"Development Status :: 5 - Production/Stable",
|
||
|
#"Development Status :: 6 - Mature",
|
||
|
#"Development Status :: 7 - Inactive",
|
||
|
|
||
|
"Intended Audience :: End Users/Desktop",
|
||
|
"Topic :: Utilities",
|
||
|
],
|
||
|
|
||
|
packages=setuptools.find_packages(),
|
||
|
python_requires=">=3.6",
|
||
|
install_requires=[
|
||
|
"requests",
|
||
|
"falcon",
|
||
|
"python-slugify",
|
||
|
],
|
||
|
extras_require={
|
||
|
"dev": [
|
||
|
"pytest",
|
||
|
]
|
||
|
}
|
||
|
)
|