36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
#!/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'
|
|
]
|
|
)
|