-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 854 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (28 loc) · 854 Bytes
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
from setuptools import setup, find_packages
setup(
name = 'bibserver',
version = '0.5.1',
packages = find_packages(),
install_requires = [
"Flask",
"Flask-Login",
"Flask-WTF",
"pyes",
"chardet",
"requests",
],
url = 'http://bibserver.okfn.org/',
author = 'Open Knowledge Foundation',
author_email = 'openbiblio@okfn.org',
description = 'BibServer is a RESTful bibliographic data server.',
license = 'AGPL',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)