Skip to content

Commit

Permalink
Merge pull request #35 from karlicoss/master
Browse files Browse the repository at this point in the history
add minimal setup.py file
  • Loading branch information
0xabu authored Mar 31, 2021
2 parents 07e1ea4 + b8e35f4 commit 608d896
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,21 @@
__pycache__

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

15 changes: 15 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from setuptools import setup


def main():
name = 'pdfannots'
setup(
name=name,
zip_safe=False,
py_modules=[name],
install_requires=open('requirements.txt').read().splitlines(),
)


if __name__ == '__main__':
main()

0 comments on commit 608d896

Please sign in to comment.