Skip to content

Commit

Permalink
update setup for py13 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TomDonoghue committed Nov 28, 2024
1 parent 1751861 commit 7c40b79
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""LISC setup script."""
"""Setup script for lisc."""

import os
from setuptools import setup, find_packages
Expand Down Expand Up @@ -46,6 +46,7 @@
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
platforms = 'any',
keywords = ['web-scraping', 'meta-analysis', 'text-mining', 'scientific-publications',
Expand All @@ -55,11 +56,11 @@
extras_require = {
'plot' : ['matplotlib', 'seaborn', 'wordcloud'],
'analysis' : ['scipy'],
'all' : ['matplotlib', 'seaborn', 'wordcloud', 'scipy']
'all' : ['matplotlib', 'seaborn', 'wordcloud', 'scipy'],
},
project_urls = {
'Documentation' : 'https://lisc-tools.github.io/',
'Bug Reports' : 'https://github.com/lisc-tools/lisc/issues',
'Source' : 'https://github.com/lisc-tools/lisc'
'Source' : 'https://github.com/lisc-tools/lisc',
},
)

0 comments on commit 7c40b79

Please sign in to comment.