22 lines
737 B
Python
22 lines
737 B
Python
import setuptools
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name="dylab",
|
|
version="0.0.1",
|
|
author="QF-group (AG Chomaz), Heidelberg university",
|
|
author_email="gao@physi.uni-heidelberg.de",
|
|
description="An internal toolbox package used for analyzation data of an ultracold atom experiment.",
|
|
# long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
# url="https://github.com/pypa/sampleproject",
|
|
packages=setuptools.find_packages(),
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
)
|