Skip to content

Commit

Permalink
update pypi info
Browse files Browse the repository at this point in the history
  • Loading branch information
ybayle committed Jan 3, 2019
1 parent b5e399c commit 791c6e9
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Python and pypi specific
__pycache__
Scyland3D.egg-info/
dist/

# Scyland3D
landmarks.csv
landmarks_reversed.csv
landmarks_reordered.csv
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
20 changes: 20 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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
''',
)

0 comments on commit 791c6e9

Please sign in to comment.