Skip to content

Instantly share code, notes, and snippets.

@yuuichi-fujioka
Created August 8, 2016 01:46
Show Gist options
  • Save yuuichi-fujioka/13c730c00daf7b502f5ee334f1bf2884 to your computer and use it in GitHub Desktop.
Save yuuichi-fujioka/13c730c00daf7b502f5ee334f1bf2884 to your computer and use it in GitHub Desktop.
Simple setup.py
from setuptools import setup
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='hoge',
version='0.1',
description='Hoge',
url='http://github.com/yuuichi.fujioka/hoge',
author='Yuuichi Fujioka',
author_email='[email protected]',
entry_points={
'console_scripts': [
'hoge=hoge.cmd:main',
]
},
license='Apache2',
packages=['hoge'],
install_requires=requirements,
zip_safe=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment