diff --git a/.gitignore b/.gitignore index 398897e..d18d720 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,9 @@ +# Python and pypi specific __pycache__ +Scyland3D.egg-info/ +dist/ + +# Scyland3D landmarks.csv landmarks_reversed.csv landmarks_reordered.csv diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b88034e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..cfc341d --- /dev/null +++ b/setup.py @@ -0,0 +1,20 @@ +from setuptools import setup + +setup( + name = 'Scyland3D', + version = '1.0.0', + description = 'A Python package for processing 3D landmarks', + long_description=open('README.md').read(), + author = 'Fidji Berio and Yann Bayle', + author_email = 'bayle.yann@live.fr', + license='LICENSE', + url = 'https://github.com/ybayle/Scyland3D', + py_modules=['Scyland3D'], + install_requires=[ + "numpy >= 1.13.3" + ], + entry_points=''' + [console_scripts] + Scyland3D=Scyland3D:pts2csv + ''', +)