Created
May 7, 2014 16:55
-
-
Save nutjob4life/a3b161028a67bd10b7bc to your computer and use it in GitHub Desktop.
Full Assed
This file contains 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, find_packages | |
setup( | |
name='fancy', | |
version='1.0.0', | |
author='Mike', | |
author_email='[email protected]', | |
description='Fancy installable package', | |
entry_points={ | |
'console_scripts': [ | |
'scrape-screen=jpl.fancy.screen:main', | |
'paste-info=jpl.fancy.paste:main' | |
], | |
include_package_data=True, | |
install_requires=['setuptools', 'MySQLdb', 'pymssql==1.0.2', 'suds==0.4'], | |
namespace_packages=['jpl', 'jpl.fancy'], | |
packages=find_packages('src'), | |
package_dir={'': 'src'} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment