Skip to content
Snippets Groups Projects
Commit 19df5860 authored by Bastien Abadie's avatar Bastien Abadie
Browse files

Add basic setup.py

parent 7aad80d9
No related branches found
No related tags found
No related merge requests found
*.pyc
db.sqlite3
playbook.retry
*.egg-info
0.2.5
setup.py 0 → 100644
#!/usr/bin/env python
from distutils.core import setup
with open('VERSION') as f:
VERSION = f.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='arkindex',
version=VERSION,
description='Manuscripts indexation framework',
author='Teklia',
author_email='abadie@teklia.com',
url='https://arkindex.teklia.com',
install_requires=requirements,
scripts=[
'arkindex/manage.py',
],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment