-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
73 lines (60 loc) · 2.27 KB
/
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
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
61
62
63
64
65
66
67
68
69
70
71
72
73
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(name='abouttag',
version='1.3.1',
description='Normalizes about tags for Fluidinfo',
author='Nicholas J. Radcliffe',
author_email='njr@StochasticSolutions.com',
packages=['abouttag'],
url="http://github.com/njr0/abouttag/",
download_url="https://github.com/njr0/abouttag",
keywords=[
'fluidinfo',
'about',
'tag',
'normalization',
'canonicalization',
'standardarization'
],
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'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'],
long_description_content_type="text/markdown",
long_description = '''\
This package provides functions for generating about tags for
Fluidinfo following various conventions.
Fluidinfo is a hosted, online database based on the notion of tagging.
For more information on FluidDB, visit http://fluidinfo.com.
For more information on the ideas that motivated this module,
see posts at http://abouttag.blogspot.com. A good place to
start is
http://abouttag.blogspot.com/2010/03/about-tag-conventions-in-fluiddb.html
EXAMPLE
Examples of usage are provided in the examples directory.
Some simple examples are:
from abouttag.books import book
from abouttag.music import album, artist, track
from abouttag.film import film, movie
print book(u"One Hundred Years of Solitude", u'Gabriel García Márquez')
print book(u'The Feynman Lectures on Physics',
u'Richard P. Feynman', u'Robert B. Leighton',
u'Matthew Sands')
print track(u'Bamboulé', u'Bensusan and Malherbe')
print album(u"Solilaï", u'Pierre Bensusan')
print artist(u"Crosby, Stills, Nash & Young")
print film(u"Citizen Kane", u'1941')
print movie(u"L'Âge d'Or", u'1930')
INSTALLATION
pip install -U abouttag
DEPENDENCIES
urlnorm
'''
)