initial commit
This commit is contained in:
14
setup.py
Normal file
14
setup.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
install_reqs = [line.strip() for line in open("requirements.txt").readlines()]
|
||||
packs = find_packages(exclude=["bin"])
|
||||
|
||||
setup(
|
||||
name="sync_zotero_rm",
|
||||
version="0.0.1",
|
||||
author="Daniel Bauer",
|
||||
description="Sync zotero collections to remarkable devices",
|
||||
install_requires=install_reqs,
|
||||
scripts=["bin/sync_zotero_rm"],
|
||||
packages=packs
|
||||
)
|
||||
Reference in New Issue
Block a user