setup.py 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. import pathlib
  2. import setuptools
  3. setuptools.setup(
  4. name="yamily",
  5. use_scm_version=True,
  6. packages=setuptools.find_packages(),
  7. description="Define family trees in YAML",
  8. long_description=pathlib.Path(__file__).parent.joinpath("README.md").read_text(),
  9. long_description_content_type="text/markdown",
  10. author="Fabian Peter Hammerle",
  11. author_email="fabian@hammerle.me",
  12. url="https://git.hammerle.me/fphammerle/yamily",
  13. # TODO license="GPLv3+",
  14. keywords=["ancestors", "family-tree", "genealogy", "plot", "visualize",],
  15. classifiers=[
  16. "Development Status :: 2 - Pre-Alpha",
  17. "Intended Audience :: End Users/Desktop",
  18. # "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
  19. "Operating System :: OS Independent",
  20. "Programming Language :: Python :: 3",
  21. "Topic :: Database",
  22. "Topic :: Sociology :: Genealogy",
  23. "Topic :: Utilities",
  24. ],
  25. entry_points={
  26. "console_scripts": [
  27. "yamily-dot = yamily._cli:_dot",
  28. "yamily-list = yamily._cli:_list",
  29. ]
  30. },
  31. install_requires=[],
  32. extras_require={"graphviz": ["graphviz"], "yaml": ["PyYAML"]},
  33. setup_requires=["setuptools_scm"],
  34. tests_require=["pytest"],
  35. )