mirror of
https://github.com/cdtools-developers/cdtools.git
synced 2026-09-09 21:12:42 +02:00
28 lines
721 B
Python
28 lines
721 B
Python
import setuptools
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name="CDTools",
|
|
version="0.0.1",
|
|
author="Abe Levitan, Madelyn Cain",
|
|
author_email="alevitan@mit.edu",
|
|
description="Coherent Diffraction Tools",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.mit.edu/scattering/CDTools.git",
|
|
install_requires=[
|
|
"numpy",
|
|
"scipy",
|
|
"matplotlib",
|
|
"python-dateutil",
|
|
#"pytorch",
|
|
"h5py"],
|
|
packages=setuptools.find_packages(),
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
)
|