예제 #1
0
def main():
    setup(name="fputs",
          version="1.0.0",
          description="Python interface for the fputs c library",
          author="Rick",
          author_email="*****@*****.**",
          ext_modules=[Extension("fputs", ["fputsmodule.c"])])
예제 #2
0
def setup(*args, **kw):
    """
    We wrap distutils setup so that we can do the CMake build, then proceed as usual with Distutils, appending
    our CMake-generated output as necessary
    """
    # TODO: implement cmake setup logic here
    # TODO: append outputs from CMake to package_data
    return distutils.setup(*args, **kw)
예제 #3
0
from distutils import setup

setup(
        name='fluttershlib',
        version='0.0.1',
        author='Guillaume Doré',
        author_email='*****@*****.**',
        url='https://github.com/Corwind/fluttershlib',
        packages=['fluttershlib'],
        classifiers=[
            'Operating System :: GNU/Linux',
            'Environment :: Console',
            'Programming Language :: Python',
            'Intended Audience :: Python enthousiasts',
            'Topic :: IRC',
            'License :: Beerware',
            ]
        )
예제 #4
0
from distutils import setup

setup(
    name='LAMP-assay-color-analysis-JAPOLO',
    version='0.1.0',
    author='John A. Polo',
    author_email='*****@*****.**',
    packages=['LAMP-assay-color-analysis'],
    scripts=[],
    url='https://github.com/ncsu-landscape-dynamics/LAMP_assay_automation',
    license='LICENSE',
    description=
    'Image analysis resulting in color analysis of data from lab-on-a-chip.',
    long_description=open('README.md').read(),
    install_requires=[
        "numpy = " * "",
        "pillow=" * "",
        "matplotlib=" * "",
        "pandas=" * "",
        "rawpy=" * "",
        "torch=" * "",
        "torchvision=" * "",
        "opencv-python=" * "",
        "pycocotools=" * "",
        "gitpython=" * "",
    ],
)
예제 #5
0
from distutils import setup
import py2exe

setup(console=['gui_rework.py'])
예제 #6
0
파일: setup.py 프로젝트: afcarl/yelp
#!/usr/bin/env python

from distutils import setup

setup(
    name='Yelp Review Predictor',
    version='0.1',
    install_requires=[
        'Theano >= 0.6.0rc3', 'joblib >= 0.7.0d', 'nltk >= 2.0.4',
        'pandas >= 0.10.1', 'sklearn-pandas >= 0.0.2', 'scipy >= 0.11.0',
        'numpy >= 1.6.1'
    ],
    dependency_links=[
        'https://github.com/lmjohns3/py-cli/archive/master.tar.gz#egg=py-cli',
        'https://github.com/lmjohns3/theano-nets/archive/master.tar.gz#egg=theano-nets'
    ])
예제 #7
0
파일: setup.py 프로젝트: fabr1z10/glib3
from distutils import setup

setup(name='example',
      version='0.1',
      author='Nobody',
      description='Pippo',
      py_modules=["example"],
      packages=[''],
      package_data={'': ['example.cpython-38-x86_64-linux-gnu.so']})
예제 #8
0
파일: setup.py 프로젝트: markpasc/bee
from distutils import setup

setup(name="bee", version="1.0", packages=["bee"], include_package_data=True)
예제 #9
0
from distutils import setup


files = []

setup(name="twitter-bot",
    version='0.1',
    description="simple twitter bot",
    author="EC HTP group01",
    author_email="",
    url="",
    packages=['bot'],
    package_data={'package': files},
    scripts=['bot/tw_daemon.py', 'bot/tw_client.py']
    )
예제 #10
0
파일: setup.py 프로젝트: bendavis78/zope
##############################################################################
#
# Copyright (c) Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
name, version = 'oodb', '0'

from distutils import setup

setup(
    author='Jim Fulton',
    author_email='*****@*****.**',
    license='ZPL 2.1',
    name=name,
    version=version,
    long_description=open('README.txt').read(),
    description=open('README.txt').read().strip().split('\n')[0],
    packages=[name],
    package_dir={'': 'src'},
)
예제 #11
0
파일: setup.py 프로젝트: gmldnjs5197/code
from distutils import setup

setup(
    name="PythonTestModule",
    version="1.1.0",
    py_modules=["printData"],
    author="greenjoa",
    author_email="*****@*****.**",
    url="http://www.greenjoa.com",
    description="Test Module",
    )
예제 #12
0
from distutils import setup

setup(
    name='db_handler',
    version='0.0.1',
    description='Database and currency conversion tools for cv_project',
    url='http://github.com/gardakan/cv_project',
    author='John Tamm-Buckle'
    author_email='*****@*****.**'
    license='none that I\'m aware of...',
    packages=['db_handler'],
    py_modules=['db_handler', 'currency_converter']
    zip_safe=False
    )
예제 #13
0
$NetBSD: patch-setup.py,v 1.1 2020/09/16 03:00:37 gutteridge Exp $

Fix packaging with Python 3.6. Taken from upstream commit:
https://github.com/micktwomey/pyiso8601/commit/b5544878bc799bdd77d63d3c9e78c4fcc4e018ad

--- setup.py.orig	2020-09-11 17:04:56.000000000 +0000
+++ setup.py
@@ -5,7 +5,7 @@ try:
 except ImportError:
     from distutils import setup
 
-long_description = open(os.path.join(os.path.dirname(__file__), "README.rst")).read()
+long_description = open(os.path.join(os.path.dirname(__file__), "README.rst"), "rb").read().decode("UTF-8")
 
 setup(
     name="iso8601",
예제 #14
0

def print_lol_1(the_list, indent=False, level=0):
    """
    This is the nester.py module and it provides one function called
    print_lol_1() which prints lists that may or may not include 
    nested lists.
    """
    for each_item in the_list:
        if isinstance(each_item, list):
            print_lol_1(each_item, indent, level + 1)
        else:
            if indent:
                for tab_stop in range(level):
                    print("\t", end=" ")
            print(each_item)


from distutils import setup

setup(
    name='nester',
    version='1.3.0',
    py_modules=['nester'],
    author='python',
    author_email='*****@*****.**',
    url='http://www.ddd.com',
    description='A simple printer of nested lists',
)

# python3 setup.py sdisk upload
예제 #15
0
from distutils import setup

setup(
    name='vgit',
    version='0.1',
    description='visual git',
    license="MIT",
    author='Grams & Mulling, Inc.',
    packages=['vgit'],
    install_requires=['gi', 'pygit2', 'radon', 'coverage'],
)
예제 #16
0
"""Setup for PyPi

Used for setting up MuGen

"""

from distutils import setup
setup(name='MuGen',
      version='1.0',
      author='Spencer Kemp',
      author_email='*****@*****.**',
      url='https://gitbub.com/snkemp',
      description='Music Generation with Machine Learning',
      long_description=open('README.md', 'r').read(),
      packages=['src'])
예제 #17
0
from distutils import setup

setup(name='Flask-Divvy',
      version='0.1',
      description='PageRank of bike trips to and from Divvy stations',
      packages=['app']
      )
예제 #18
0
파일: setup.py 프로젝트: csm/ooppy
#!/usr/bin/python

from distutils import setup

setup(name='ooppy',
	  version='0.0.1',
	  py_modules = ['oop'])
예제 #19
0
파일: setup.py 프로젝트: Sandy4321/yelp
#!/usr/bin/env python

from distutils import setup

setup(
        name='Yelp Review Predictor',
        version='0.1',
        install_requires = [
            'Theano >= 0.6.0rc3',
            'joblib >= 0.7.0d',
            'nltk >= 2.0.4',
            'pandas >= 0.10.1',
            'sklearn-pandas >= 0.0.2',
            'scipy >= 0.11.0',
            'numpy >= 1.6.1'
        ],
        dependency_links = [
            'https://github.com/lmjohns3/py-cli/archive/master.tar.gz#egg=py-cli',
            'https://github.com/lmjohns3/theano-nets/archive/master.tar.gz#egg=theano-nets'
        ]
)

예제 #20
0
#!/usr/bin/env python

from distutils import setup

setup(name="QuakeCompiler",
      version='0.1.0',
      description='Profile based task manager for compiling quake style maps',
      author='Kaleb Clark',
      author_email='*****@*****.**',
      url='https://github.com/KalebClark/QuakeCompiler',
      packages=[])