Skip to content

Commit

Permalink
improved setup and linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jtauber committed May 26, 2022
1 parent 033a29a commit c8b1357
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
__pycache__
htmlcov
.coverage
coverage.xml
*.egg-info
dist
7 changes: 3 additions & 4 deletions lint.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/bin/sh

isort arda
black arda
flake8 --max-line-length=88 arda

isort arda setup.py
black arda setup.py
flake8 --max-line-length=88 arda setup.py
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
from pathlib import Path

from setuptools import setup

this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name="arda",
version="0.1.0",
description="Python library for Tolkien-related data processing",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/digitaltolkien/arda",
author="James Tauber",
author_email="[email protected]",
Expand Down

0 comments on commit c8b1357

Please sign in to comment.