46 lines
1.2 KiB
Python
46 lines
1.2 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
from os import path
|
|
from setuptools import setup, find_packages
|
|
|
|
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:
|
|
long_description = f.read()
|
|
|
|
setup(
|
|
name="mechanics",
|
|
version="2020.10.21",
|
|
description="mechanical tools",
|
|
long_description=long_description,
|
|
author="Daniel Weschke",
|
|
author_email="daniel.weschke@directbox.de",
|
|
package_dir={'': 'src'},
|
|
packages=find_packages("src"),
|
|
py_scripts = [
|
|
'beam.py',
|
|
'plate.py',
|
|
'tube.py',
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'beam=beam:main',
|
|
'plate=plate:main',
|
|
'tube=tube:main',
|
|
],
|
|
},
|
|
keywords = 'mechanics plate tube stress',
|
|
license="MIT",
|
|
classifiers=[
|
|
'Environment :: Console',
|
|
'Intended Audience :: Education',
|
|
'Intended Audience :: End Users/Desktop',
|
|
'Intended Audience :: Developers',
|
|
'Intended Audience :: Science/Research',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Natural Language :: English',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Topic :: Scientific/Engineering',
|
|
'Topic :: Scientific/Engineering :: Physics'
|
|
]
|
|
)
|