-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 770 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (21 loc) · 770 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
import os
from setuptools import setup
def get_readme(fname):
_path = os.path.join(os.path.dirname(__file__), fname)
return open(_path).read()
setup(
name = 'xuggest',
version = '0.0.1',
author = 'Orson Adams',
description = ('Prototype Autosuggest Pipelines in the Command line'),
license = 'BSD',
keywords = ['autosuggest', 'autocomplete'],
url = 'orsonadams.com/projects/xuggest',
packages = ['xuggest.*', 'tests'],
install_requires = ['urwin'],
long_description = read('./README.md'),
classifiers = [
'Development Status :: 1 - Planning',
'Topic :: Frameworks, Utilities',
'License :: OSI Approved :: BSD License',
])