-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (29 loc) · 1.18 KB
/
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
#!/usr/bin/python
# See file COPYING distributed with python-hypothesis for copyright and
# license.
from setuptools import setup
long_description = open('README.rst').read()
setup(name='python-hypothesis',
version='0.4.2',
description='Python library for the Hypothes.is API',
author='Christian Haselgrove',
author_email='[email protected]',
url='https://github.com/chaselgrove/python-hypothesis',
packages=['h_annot'],
scripts=[],
install_requires=['requests',
'python-dateutil',
'six'],
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries'],
license='BSD license',
long_description=long_description
)
# eof