source:
unitpy/setup.py@
1144
Last change on this file since 1144 was 989, checked in by , 3 months ago | |
---|---|
File size: 435 bytes |
Line | |
---|---|
1 | from setuptools import setup |
2 | |
3 | setup( |
4 | name='unitpy', |
5 | version='1.1.0', |
6 | description='Tool supporting unittests', |
7 | url='https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities', |
8 | author='W.Pasman', |
9 | #packages={'src':'*'}, |
10 | packages = ['unitpy'], |
11 | package_data = { 'unitpy': ['py.typed'] }, |
12 | install_requires=[], |
13 | classifiers=[ |
14 | 'Programming Language :: Python :: 3', |
15 | ], |
16 | py_modules=['unitpy'] |
17 | ) |
Note:
See TracBrowser
for help on using the repository browser.