marxbook/setup.py

32 lines
891 B
Python
Raw Normal View History

2021-03-21 12:09:07 +01:00
import os
from setuptools import setup
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as buf:
return buf.read()
setup(
name="marxbook",
version="0.0.1",
description="A flat-file bookmark manager",
long_description=read("README.md"),
long_description_content_type="text/markdown",
author="boyska",
author_email="piuttosto@logorroici.org",
license="AGPL",
2021-03-27 01:23:00 +01:00
packages=["marxbook", "luxembook"],
install_requires=["beautifulsoup4==4.7.1"],
2021-03-21 12:09:07 +01:00
python_requires=">=3.5",
2021-03-27 01:23:00 +01:00
zip_safe=False,
include_package_data=True,
package_data = {'luxembook': ['gui.ui']},
entry_points={"console_scripts": ["mxb=marxbook.cli:main", "mxb-gui=luxembook.gui:main"]},
2021-03-21 12:09:07 +01:00
classifiers=[
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3.5",
],
)