diff --git a/code/README.md b/code/README.md new file mode 100644 index 0000000..e69de29 diff --git a/code/pyproject.toml b/code/pyproject.toml new file mode 100644 index 0000000..fa7093a --- /dev/null +++ b/code/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools>=42"] +build-backend = "setuptools.build_meta" \ No newline at end of file diff --git a/code/setup.cfg b/code/setup.cfg new file mode 100644 index 0000000..50b5ea5 --- /dev/null +++ b/code/setup.cfg @@ -0,0 +1,22 @@ +[metadata] +name = MCFF +version = 0.0.1 +author = Tom Hodson +author_email = tch14@ic.ac.uk +description = A small example package +long_description = file: README.md +long_description_content_type = text/markdown +url = https://github.com/TomHodson/MCMC_for_fun_and_profit +classifiers = + Programming Language :: Python :: 3 + License :: OSI Approved :: MIT License + Operating System :: OS Independent + +[options] +package_dir = + = src +packages = find: +python_requires = >=3.6 + +[options.packages.find] +where = src \ No newline at end of file