-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (46 loc) · 1.41 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
49
50
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright © 2019-2020, Matjaž Guštin <dev@matjaz.it> <https://matjaz.it>.
# Released under the BSD 3-Clause License
"""Package setup for the Rangeforce library."""
from distutils.core import setup
# noinspection PyUnresolvedReferences
import setuptools
setup(
name='Rangeforce',
version='1.1.0',
description='Developer-friendly range checks with user-friendly error '
'messages',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Matjaž Guštin',
author_email='dev@matjaz.it',
url='https://github.com/TheMatjaz/Rangeforce',
license='BSD',
py_modules=[
'rangeforce',
],
keywords=[
'range',
'domain',
'limited',
'validation',
'user-input',
'friendly',
'understandable',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
python_requires='>=3',
)