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
|
from setuptools import setup, find_packages
import os
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description = (
read('src', 'hurry', 'filesize', 'README.txt')
+ '\n' +
read('CHANGES.txt')
+ '\n' +
'Download\n'
'========\n'
)
setup(
name="hurry.filesize",
version="0.9",
description="A simple Python library for human readable file sizes (or anything sized in bytes).",
long_description=long_description,
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='file size bytes',
author='Martijn Faassen, Startifact',
author_email='faassen@startifact.com',
url='',
license='ZPL 2.1',
packages=find_packages('src'),
package_dir= {'':'src'},
namespace_packages=['hurry'],
include_package_data=True,
zip_safe=False,
install_requires=[
],
)
|