move files into src directory

This commit is contained in:
2021-02-09 13:06:17 +01:00
parent d0eabd3252
commit bba60a00a4
25 changed files with 59 additions and 15 deletions

35
setup.py Normal file
View File

@@ -0,0 +1,35 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import join, dirname
from setuptools import setup, find_packages
# Utility function to read the README file. Used for the long_description.
def read(fname):
with open(join(dirname(__file__), fname)) as fh:
return fh.read()
setup(
name="pylib",
version="2021.02.01",
description="python library",
long_description=read("README.md"),
author="Daniel Weschke",
author_email="daniel.weschke@directbox.de",
package_dir={'': 'src'},
packages=find_packages("src"),
keywords = ['data', 'date', 'draw', 'geometry', 'mathematics', 'numerical', 'time'],
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'
]
)