0
|
1 from setuptools import setup, find_packages
|
|
2 import sys, os
|
|
3
|
19
|
4 version = "0.2.6"
|
0
|
5
|
|
6 setup(name='uploader',
|
|
7 version=version,
|
|
8 description="a file uploader app",
|
8
|
9 long_description="",
|
0
|
10 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
|
|
11 author='Ethan Jucovy',
|
|
12 author_email='',
|
5
|
13 url='http://k0s.org/hg/uploader',
|
|
14 license="GPL",
|
0
|
15 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
|
|
16 include_package_data=True,
|
|
17 zip_safe=False,
|
|
18 install_requires=[
|
|
19 # -*- Extra requirements: -*-
|
|
20 'WebOb',
|
|
21 'Paste',
|
|
22 'PasteScript',
|
|
23 ],
|
|
24 entry_points="""
|
|
25 # -*- Entry points: -*-
|
|
26 [paste.app_factory]
|
|
27 main = uploader.factory:factory
|
|
28 """,
|
|
29 )
|
|
30
|