-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
33 lines (30 loc) · 1.29 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
long_description = open('README.rst').read()
setup(
name='expects',
version='0.9.0',
description='Expressive and extensible TDD/BDD assertion library for Python',
long_description=long_description,
url='https://github.com/jaimegildesagredo/expects',
author='Jaime Gil de Sagredo Luna',
author_email='[email protected]',
license='Apache 2.0',
packages=find_packages(exclude=['specs', 'specs.*', 'examples', 'examples.*']),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Apache Software License'
]
)