-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
48 lines (38 loc) · 1.36 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
47
48
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
tests_require = ['pytest==3.7.1', 'pytest-cov==2.5.1', 'coverage==4.5.1', 'coveralls==1.3.0']
install_requires = []
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
def finalize_options(self):
TestCommand.finalize_options(self)
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.pytest_args)
sys.exit(errno)
VERSION = '0.0.5'
setup(
name="timefhuman",
version=VERSION,
author="Alvin Wan",
author_email='[email protected]',
description=("Convert natural language date-like string to Python objects"),
license="BSD",
url="https://github.com/alvinwan/timefhuman",
packages=['timefhuman'],
tests_require=tests_require,
install_requires=install_requires,
download_url='https://github.com/alvinwan/timefhuman/archive/%s.zip' % VERSION,
extras_require={"test":tests_require},
classifiers=[
"Topic :: Utilities",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
],
)