-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
25 lines (23 loc) · 813 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='PyTrie',
version='0.4.0',
author='George Sakkis',
author_email='[email protected]',
url='https://github.com/gsakkis/pytrie/',
description='A pure Python implementation of the trie data structure.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
py_modules=['pytrie'],
install_requires=['sortedcontainers'],
test_suite='tests',
)