-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
74 lines (67 loc) · 2.05 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
#!/usrbin/env python # -*- coding: us-ascii -*- # vim: syntax=python
#
# Copyright 2006-2008 Noriyuki Hosaka [email protected]
#
from setuptools import setup
try:
# add classifiers and download_url syntax to distutils
from distutils.dist import DistributionMetadata
DistributionMetadata.classifiers = None
DistributionMetadata.download_url = None
except:
pass
setup(
name="python-tonic-library",
version="0.0.16",
zip_safe=False,
description="""collection of small codes. "tonic" library for python""",
long_description="""This package contains:
* lineparser
* parsing line oriented data.
* cache
* interface/implementation for cache something.
* supports
* using dict
* using disk
* using file (key for get/set must be valid path)
* using memcache
* multithread is currently NOT supported
* math related
* combination
* funny
* __dict__/__setattr__ joke
* other
* feedhelper => will move out as app
*
""",
package_dir={'tonic':'tonic', },
packages=['tonic',
'tonic.cache',
'tonic.depot',
'tonic.feedhelper',
'tonic.markups',
],
package_data = {},
py_modules=[
'tonic.funny',
'tonic.lineparser',
'tonic.combination',
'tonic.visitbus',
'tonic.bitsarray',
],
install_requires= ['BeautifulSoup==3.2.0\n', 'ClientForm==0.2.10\n', 'decorator==3.3.2\n', 'distribute==0.6.19\n', 'elementtree==1.2.7-20070827-preview\n', 'feedparser==5.0.1\n', 'nose==1.1.2\n', 'python-memcached==1.47\n', 'wsgiref==0.1.2\n'],
author="Noriyuki Hosaka",
author_email="[email protected]",
url="http://github.com/bgnori/tonic",
license="Apache 2.0 Lisence",
provides=['tonic'],
classifiers=[
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Text Processing",
"Topic :: Software Development",
"Topic :: System :: Archiving :: Packaging",
]
)