Commit 14ab11e3 authored by 吴升宇's avatar 吴升宇

fix setup

parent 359f84d3
#!/usr/bin/env python #!/usr/bin/env python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import ez_setup # import ez_setup
ez_setup.use_setuptools() # ez_setup.use_setuptools()
from setuptools import setup
setup(
name="Skin Detector",
version="1.0a Prototype",
url='',
author='Will Brennan',
author_email='william.brennan@skytales.com',
license='GPL',
install_requires=["numpy"], )
from setuptools import setup, find_packages from setuptools import setup, find_packages
# setup(
# name="Skin Detector",
# version="1.0a Prototype",
# url='',
# author='Will Brennan',
# author_email='william.brennan@skytales.com',
# license='GPL',
# install_requires=["numpy"], )
with open('README.rst') as f: # from setuptools import setup, find_packages
#
with open('README.md') as f:
readme = f.read() readme = f.read()
with open('LICENSE') as f: with open('LICENSE') as f:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment