Created
August 8, 2016 01:46
-
-
Save yuuichi-fujioka/13c730c00daf7b502f5ee334f1bf2884 to your computer and use it in GitHub Desktop.
Simple setup.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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