22 lines
464 B
Python
22 lines
464 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="materials",
|
|
version="2019.02.08",
|
|
#description="",
|
|
#long_description="",
|
|
author="Daniel Weschke",
|
|
author_email="daniel.weschke@directbox.de",
|
|
package_dir={'': 'src'},
|
|
packages=find_packages("src"),
|
|
py_scripts = [ # List of all single modules in src
|
|
'materials.py',
|
|
],
|
|
#install_requires=[
|
|
# '',
|
|
#],
|
|
entry_points={
|
|
'console_scripts': ['materials=materials:main'],
|
|
}
|
|
)
|