forked from jmoiron/humanize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (39 loc) · 1.17 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup script for humanize."""
from setuptools import setup, find_packages
import sys, os
import io
version = '0.5.1'
# some trove classifiers:
setup(
name='humanize',
version=version,
description="python humanize utilities",
long_description=io.open('README.rst', 'r', encoding="UTF-8").read(),
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Programming Language :: Python',
],
keywords='humanize time size',
author='Jason Moiron',
author_email='jmoiron@jmoiron.net',
url='http://github.com/jmoiron/humanize',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
test_suite="tests",
tests_require=['mock'],
install_requires=[
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
""",
)