mirror of
https://github.com/cdtools-developers/cdtools.git
synced 2026-09-09 21:12:42 +02:00
Add start of structure
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
*~
|
||||
\#*#
|
||||
*.pyc
|
||||
*.egg-info
|
||||
docs/build
|
||||
@@ -0,0 +1,3 @@
|
||||
from __future__ import division, print_function, absolute_import
|
||||
|
||||
from CDTools import tools
|
||||
@@ -0,0 +1 @@
|
||||
from __future__ import division, print_function, absolute_import
|
||||
@@ -0,0 +1,26 @@
|
||||
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",
|
||||
"pytorch",
|
||||
"h5py"],
|
||||
packages=setuptools.find_packages(),
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"Operating System :: OS Independent",
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user