-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 764 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 764 Bytes
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
# -*- encoding: utf-8 -*-
import setuptools
from distutils.core import setup
setup(
name='datetime_truncate',
version='1.1.1',
url='https://github.com/mediapop/datetime_truncate',
author='Björn Andersson / Media Pop',
author_email='bjorn@mediapop.co',
description='Truncate datetime objects to a set level of precision',
license='BSD',
long_description=open('README.rst').read(),
packages=['datetime_truncate'],
package_data={
'': ['README.rst']
},
include_package_data=True,
test_suite='nose.collector',
tests_require=['nose>=1.2.1'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
],
)