Skip to content

Commit

Permalink
Add pip setup.py file to source control.
Browse files Browse the repository at this point in the history
  • Loading branch information
timesler committed Jul 4, 2019
1 parent c13b875 commit 16ea80c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import setuptools

with open('facenet_pytorch/README.md', 'r') as f:
long_description = f.read()

setuptools.setup(
name='facenet-pytorch',
version='0.0.1',
author='Tim Esler',
author_email='[email protected]',
description='Pretrained Pytorch face detection and recognition models',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/timesler/facenet-pytorch',
packages=[
'facenet_pytorch',
'facenet_pytorch.models',
'facenet_pytorch.models.utils',
'facenet_pytorch.data',
],
package_data={'': ['*net.pt']},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)

0 comments on commit 16ea80c

Please sign in to comment.