-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 700 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 700 Bytes
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
from setuptools import setup
version = '0.1.1'
setup_args = dict(
name='trie',
version=version,
description=('A prefix tree (trie) implementation.'),
author='David Hain',
author_email='dhain@spideroak.com',
url='https://spideroak.com/code',
license='MIT',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
py_modules=['trie'],
test_suite='nose.collector',
test_requires=['Nose'],
)
if __name__ == '__main__':
setup(**setup_args)