-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
executable file
·31 lines (28 loc) · 1.07 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
#!/usr/bin/env python
"""How to release a new version: https://packaging.python.org/en/latest/distributing.html#uploading-your-project-to-pypi"""
from businesstime import __version__
from setuptools import find_packages, setup
setup(
name='businesstime',
version=__version__,
author='SeatGeek',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
url='http://github.com/seatgeek/businesstime',
license=open('LICENSE.txt').read(),
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
description=
'A simple utility for calculating business time aware timedeltas between two datetimes',
long_description=open('README.rst').read() + '\n\n' +
open('CHANGES.rst').read(),
tests_require=['nose'],
test_suite='nose.collector')