mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/SPATZ.git
synced 2025-06-10 01:55:59 +00:00
14 lines
272 B
Python
14 lines
272 B
Python
from setuptools import find_packages, setup
|
|
|
|
|
|
with open('README.md', 'r') as f:
|
|
longdescription = f.read()
|
|
|
|
|
|
setup(
|
|
name='spatz',
|
|
version='0.0.10',
|
|
package_dir={'': 'spatz'},
|
|
packages=find_packages(where='spatz'),
|
|
long_description=longdescription
|
|
) |