diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2016-12-22 16:35:34 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2016-12-22 16:35:34 +0100 |
commit | 826f690632664f070d863abdbe31e978e99d3325 (patch) | |
tree | d4642d19cc005a86ae7d26cfcbb4278136728d52 /setup.py | |
parent | 8ccc34fb6d167ab9b142df40e515a89770523323 (diff) |
setup.py using setuptools
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', +) |