-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1022 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
30
31
32
33
34
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='ugentbiblio',
version='0.2.2',
description='Connector to the API of Ghent University Academic Bibliography',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License'
],
author='Stef Bastiaansen',
author_email='[email protected]',
url='https://github.com/megasnort/python-ugent-biblio',
packages=['biblio'],
keywords='ugent biblio library publications',
license='Apache',
install_requires=[
'requests',
],
setup_requires=['pytest-runner'],
test_suite='pytest',
include_package_data=True,
zip_safe=False
)