forked from google/pygtrie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 984 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
from distutils.core import setup
import version
with open('README.rst') as f:
readme = f.read()
setup(
name='pytrie',
version=version.getVersion(),
description='Trie data structure implementation.',
long_description=readme,
author='Michal Nazarewicz',
author_email='mina86@mina86.com',
url='https://github.com/google/pytrie',
py_modules=['trie'],
license='Apache-2.0',
platforms='Platform Independent',
keywords=['trie', 'prefix tree', 'data structure'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)