-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
60 lines (49 loc) · 1.61 KB
/
setup.py
File metadata and controls
60 lines (49 loc) · 1.61 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(name='fish',
version='4.34',
description='The Fluidinfo Shell',
author='Nicholas J. Radcliffe',
author_email='njr@StochasticSolutions.com',
packages=['fish'],
url="http://github.com/njr0/fish/",
download_url="https://github.com/njr0/fish",
scripts=['scripts/fish'],
keywords=[
'fluidinfo',
'fluiddb',
'abouttag',
'about',
'tag',
'shell',
'normalization',
'canonicalization',
'standardarization'
],
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet',
],
install_requires = ['urlnorm>=1.1.2', 'requests==0.9.2'],
long_description = '''\
The Fluidinfo shell provides a shell for Fluidinfo, modelled
fairly closely on a Unix shell.
Fluidinfo is a hosted, online database based on the notion of tagging.
For more information on FluidDB, visit http://fluidinfo.com.
The full documentation is hosted in Fluidinfo and may be accessed
in an ordinary browser at
http://fluiddb.fluidinfo.com/about/fish/fish/index.html
INSTALLATION
python setup.py install
DEPENDENCIES
urlnorm
abouttag
requests (or httplib2)
'''
)