-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (31 loc) · 1.11 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
35
36
37
38
39
#
# This file is part of PySkiplist. PySkiplist is Copyright (c) 2012-2015 by
# the PySkiplist authors.
#
# PySkiplist is free software available under the MIT license. See the file
# named LICENSE distributed with this file for the exact licensing terms.
from __future__ import absolute_import, print_function
from setuptools import setup
version_info = {
'name': 'pyskiplist',
'version': '1.0.0',
'description': 'Fast, pure Python indexable skip list',
'author': 'Geert Jansen',
'author_email': '[email protected]',
'url': 'https://github.com/geertj/pyskiplist',
'license': 'MIT',
'classifiers': [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'
]
}
def main():
setup(packages=['pyskiplist'], **version_info)
if __name__ == '__main__':
main()