-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
33 lines (29 loc) · 1.31 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
from setuptools import setup
setup(
name='retroactive',
version='0.1',
description='Retroactive data structures',
long_description="""Implements algorithms for various types of retroactive data structures. Retroactive data structures allow operations to be 'retroactively' performed, affecting the history of the data structure.
Read the code at GitHub_.
Read the documentation at ReadTheDocs_.
.. _Github: http://github.com/csvoss/retroactive/
.. _ReadTheDocs: http://python-retroactive-data-structures.readthedocs.org/en/latest/""",
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
'Topic :: Utilities',
'Intended Audience :: Science/Research',
],
keywords='retroactive data structures retroactivity datastructures persistence algorithms queue deque union-find stack priority-queue',
url='http://github.com/csvoss/retroactive',
author='Chelsea Voss',
author_email='[email protected]',
license='GPL',
packages=['retroactive', 'retroactive.basic', 'retroactive.partial', 'retroactive.full'],
install_requires=[
],
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False)