setup.py 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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={
  33. # >= 0.7 subgraph context manager
  34. "graphviz": ["graphviz>=0.7"],
  35. "yaml": ["PyYAML"],
  36. },
  37. setup_requires=["setuptools_scm"],
  38. tests_require=["pytest"],
  39. )