from disutils.core import setup import py2exe setup(console=["createpage.py"])
#!/usr/bin/env python # -*- coding: utf-8 -*- from disutils.core import setup setup(name='webdemo', description='A simple web demo.', author='author name', author_email='*****@*****.**', url='http://example.com', packages=['webdemo'])
# -*- coding: utf-8 -*- """ Created on Thu Jan 26 14:35:42 2012 @author: jharston """ from disutils.core import setup setup( name = 'ubertool', version = '1.0.0', py_modules = ['ubertool'], author = 'ubertool development', author_email = '*****@*****.**', url = 'http://www.ubertool.org', description = 'übertool for EFED ecological risk modules', )
#!/usr/bin/env python from disutils.core import setup setup(name="ytpy", version=1.0 description="Python Wrapper for YouTube API" author="Michael Chary" author_email="*****@*****.**" url="https://github.com/mac389/ytpy" py_modules=[], )
from disutils.core import setup setup(name="InsightCode1", author = "Basak" url = "https://github.com/basakanayurt/InsightCode1" packages=["Package"] )
from disutils.core import setup setup( name='todo_api', version='0.1', description='A ToDo List API built w/ Django REST Framework', author='Dan Chay', author_email='*****@*****.**', url='https://github.com/danchay/djrest.git', packages=find_packages(), install_requires=[ Django==1.11.4, djangorestframework==3.6.4, pytz==2017.2, ] )
from disutils.core import setup setup( name='ECM_dVRL', version='0.0.1', packages=[ 'ECM_dVRL_v01', ], license='Creative Commons Attribution-Noncommercial-Share Alike license', long_description=open('README.md').read(), )
""" References: https://docs.python.org/2.7/distutils/index.html https://docs.python.org/2/distributing/index.html https://docs.python.org/2/distutils/setupscript.html https://packaging.python.org/en/latest/distributing/ http://pythonhosted.org/setuptools/setuptools.html """ from disutils.core import setup setup(name='Demo', version='1.0', description='Python Distribution Utilities', author='Python.Developer', author_email='*****@*****.**', url='https://www.python.org/sigs/distutils-sig/', py_modules=['demo'], license='MIT' ) """ Package Command: $ python setup.py sdist """
from disutils.core import setup import py2exe setup(console=['Solitaire.py'])
from disutils.core import setup, find_packages except ImportError: from setuptools import setup, find_packages dependencies = [ 'PyYAML==5.1', 'PyGithub==1.43', 'requests==2.20.0', 'typing==3.6.6', 'unidiff==0.5.4', ] SYSTEM = platform.system() if SYSTEM == 'Darwin': dependencies.append('pync==2.0.3') elif SYSTEM == 'Linux' and not os.environ.get('TRAVIS'): dependencies.append('dbus-python==1.2.8') dependencies.append('notify2==0.3.1') setup(name='github_watcher', version='5.2', description='Monitors files/directories on github and alerts you when someone submits a PR with changes', long_description=long_description, author='Andrew Kelleher', author_email='*****@*****.**', packages=find_packages(), scripts=['github_watcher/github-watcher'], url='https://github.com/akellehe/github-watcher', install_requires=dependencies)
from disutils.core import setup import py2exe setup(console=['codes.py']) setup(console=['fileDlt.py'])
from disutils.core import setup from .loganalyzer import version setup(name='loganalyzer', version='0.1.0')
from disutils.core import setup setup( name='SoloLearn', version='0.1dev', packages=[ 'sololearn', ], license='MIT', long_description=open('README.txt').read(), )
from disutils.core import setup, Extension module = Extension("example", sources=["example_wrap.c"]) setup(name="packageName", version="1.0", description="This is a package for example", ext_module=[module])
from disutils.core import setup setup(name='Phone And Email Extractor', version='1.0', description='Use this to extract email and phonenumber in clipboard' author='LuongVo' author_email='*****@*****.**' )
# -*- coding: utf-8 -*- from disutils.core import setup setup( name = 'nester', version = '1.0.0', py_modules = ['nester'], author = 'jesuishc', author_email = '*****@*****.**', url = '', description = 'test', )