forked from kvesteri/intervals
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (48 loc) · 1.33 KB
/
setup.py
File metadata and controls
55 lines (48 loc) · 1.33 KB
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
49
50
51
52
53
54
55
"""
intervals
---------
Python tools for handling intervals (ranges of comparable objects).
"""
from setuptools import setup, find_packages
import sys
PY3 = sys.version_info[0] == 3
extras_require = {
'test': [
'pytest==2.2.3',
'Pygments>=1.2',
'six>=1.4.1'
],
}
setup(
name='intervals',
version='0.2.0',
url='https://github.com/kvesteri/intervals',
license='BSD',
author='Konsta Vesterinen',
author_email='konsta@fastmonkeys.com',
description=(
'Python tools for handling intervals (ranges of comparable objects).'
),
long_description=__doc__,
packages=find_packages('.'),
py_modules=['intervals'],
zip_safe=False,
include_package_data=True,
platforms='any',
dependency_links=[],
install_requires=[
'infinity>=0.1.3',
'total_ordering>=0.1'
if sys.version_info[0] == 2 and sys.version_info[1] < 7 else ''
],
extras_require=extras_require,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)