Skip to content

Commit

Permalink
Revert "Delete setup.py"
Browse files Browse the repository at this point in the history
This reverts commit 60ad70a.
  • Loading branch information
m-julian committed May 24, 2022
1 parent 60ad70a commit 4020942
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions ichor_lib_subpackage/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from setuptools import setup, find_namespace_packages

setup(
name='ichor_lib',
version="3.0.0",
author="Matthew Burn, Yulian Manchev",
author_email="matthew.burn@postgrad.manchester.ac.uk, yulian.manchev@postgrad.manchester.ac.uk",
project_urls = {"github": "https://github.com/popelier-group/ICHOR"},
classifiers=[
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
],
description="ICHOR library subpackage.",
packages=find_namespace_packages(include=['ichor*']),
python_requires=">=3.7",
install_requires=["pandas"]
)

0 comments on commit 4020942

Please sign in to comment.