62074cf5f1
needed for installation of project 'development' installation of project needed for pytest to find source modules now before running pytest you need to run `pip install -e .`
25 lines
No EOL
723 B
Python
25 lines
No EOL
723 B
Python
import setuptools
|
|
|
|
import setuptools
|
|
|
|
with open("README.md", "r") as readme:
|
|
long_description = readme.read()
|
|
|
|
print(setuptools.find_packages())
|
|
setuptools.setup(
|
|
name="moneyusage", # Replace with your own username
|
|
version="0.0.1",
|
|
author="Flukx",
|
|
author_email="flukx@uber.space",
|
|
description="My wrapper for gnucash",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://flugit.hilsky.de/flukx/moneyusage",
|
|
packages=setuptools.find_packages(),
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: GNU GPL 3",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires='>=3.8',
|
|
) |