Last change
on this file since 1403 was 1394, checked in by wouter, 3 days ago |
#428 change way exceptions are parsed. Added test for that.
|
File size:
581 bytes
|
Line | |
---|
1 | from setuptools import setup, find_packages
|
---|
2 |
|
---|
3 | ver = '1.0.0'
|
---|
4 |
|
---|
5 | setup(
|
---|
6 | name='failingtest',
|
---|
7 | version=ver,
|
---|
8 | description='Test class with failing tests',
|
---|
9 | url='https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities',
|
---|
10 | author='W.Pasman',
|
---|
11 | # packages={'src':'*'},
|
---|
12 | py_modules=['testcode.failingTest'],
|
---|
13 | install_requires=[
|
---|
14 | "unitpy@https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/export/1374/unitpy/dist/unitpy-1.1.2.tar.gz"
|
---|
15 | ],
|
---|
16 |
|
---|
17 | classifiers=[
|
---|
18 | 'Programming Language :: Python :: 3.8',
|
---|
19 | 'Programming Language :: Python :: 3.9'
|
---|
20 | ],
|
---|
21 | )
|
---|
Note:
See
TracBrowser
for help on using the repository browser.