diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..f381963 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,8 @@ +[metadata] +name = PyEC +version = 0.1 +author = Seiya Nomura +license = file: LICENSE + +[options] +install_requires = numpy \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..e31fce4 --- /dev/null +++ b/setup.py @@ -0,0 +1,3 @@ +from setuptools import setup + +setup() \ No newline at end of file