diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..d496e64 --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +from setuptools import setup, find_packages +setup( + name='lesana', + version='0.1.a.dev', + packages=find_packages(), + scripts=['scripts/lesana'], + + install_require = [ + 'xapian >= 1.4', + 'ruamel.yaml', + ], + + package_data={ + '': ['*.yaml'] + }, + test_suite = 'tests', + + # Metadata + author="Elena ``of Valhalla'' Grandi", + author_email='valhalla-l@trueelena.org', + description='Manage collection inventories throught yaml files.', + license='GPLv3', + keywords='collection', + url='https://lesana.trueelena.org/lesana', +) |