Skip to content

Commit

Permalink
Add a bit of info to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
oscargus committed Feb 27, 2023
1 parent 1121c19 commit ba6c70e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python
import os
from pathlib import Path
from setuptools import setup

def get_version(path):
Expand All @@ -18,10 +19,15 @@ def get_version(path):
author='Ilya Flyamer',
author_email='flyamer@gmail.com',
url='https://github.com/Phlya/adjustText',
project_urls={
'Documentation': 'https://adjusttext.readthedocs.io/',
},
packages=['adjustText'],
install_requires=['numpy', 'matplotlib'],
include_package_data=True,

long_description=Path("README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
license="MIT",
classifiers=[
'Framework :: Matplotlib',
'Topic :: Scientific/Engineering :: Visualization'],
Expand Down

0 comments on commit ba6c70e

Please sign in to comment.