-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 954 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python
# coding: utf-8
import setuptools
setuptools.setup(
name='riverrun',
version='0.1',
author='Arthur Darcet',
author_email='[email protected]',
description="A minimalist book library web interface.",
license='MIT',
keywords=['ebook', 'epub', 'library', 'daemon', 'webui'],
url='http://github.com/arthurdarcet/riverrun',
download_url='http://pypi.python.org/pypi/riverrun',
packages=['riverrun', 'riverrun.book', 'riverrun.http'],
package_data={'riverrun': ['config.yaml', 'http/static/*']},
install_requires=open('requirements.pip').read().split('\n'),
entry_points = {'console_scripts': ['riverrun = riverrun.__main__',]},
test_suite='test',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
],
include_package_data=True,
)