-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·36 lines (33 loc) · 1.29 KB
/
setup.py
File metadata and controls
executable file
·36 lines (33 loc) · 1.29 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
# 1. change (increase) version id in `setup.py`
# 1.2 install locally: pip install --upgrade .
# 2. python setup.py sdist register upload
from setuptools import setup, find_packages # Always prefer setuptools over distutils
from codecs import open # To use a consistent encoding
with open('README.rst') as f:
readme = f.read()
setup(
name='checktype',
version='1.1.7',
description='Intuitive and minimalistic type checking for Python objects',
long_description=readme,
url='https://github.com/renaud/checktype',
author='Renaud Richardet',
author_email='renaud@apache.org',
license='Apache License (2.0)',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Operating System :: OS Independent',
'Environment :: Console',
],
keywords='type checking',
py_modules=['checktype']
)