コード例 #1
0
ファイル: setup.py プロジェクト: gitmacbart/MyToolBox
import pathlib
from setuptools import setuptools

# The directory containing this file
HERE = pathlib.Path(__file__).parent

# The text of the README file
README = (HERE / "README.md").read_text()

setuptools.setup(name='kubemq',
                 version='1.1.0',
                 description='KubeMQ SDK for Python',
                 long_description=README,
                 long_description_content_type="text/markdown",
                 url='https://github.com/kubemq-io/kubemq-Python',
                 author='KubeMQ',
                 author_email='*****@*****.**',
                 license='MIT',
                 packages=setuptools.find_packages(),
                 install_requires=[
                     'future==0.17.1',
                     'grpcio==1.27.1',
                     'protobuf==3.6.1',
                 ],
                 zip_safe=False)
コード例 #2
0
from setuptools import setuptools, find_packages

setuptools.setup(
    name="wordcount-extras",
    version="0.0.1",
    description="Word Count Extra Packages",
    packages=find_packages(),
    install_requires=["apache-beam"],
)
コード例 #3
0
from setuptools import setuptools

with open('README.md', 'r') as fh:
    long_description = fh.read()

with open('requirements.txt') as f:
    requirements = f.readlines()

setuptools.setup(
    name='pyprerender',
    version='0.0.9',
    author='Matas Minelga',
    author_email='*****@*****.**',
    description='A python prerender',
    long_description=long_description,
    long_description_content_type='text/markdown',
    url='https://github.com/thingiesmm/pyprerender',
    python_requires='>=3.7',
    install_requires=requirements,
    package_dir={"": "src"},
    packages=['pyprerender'],
    scripts=['src/pyprerender/pyprerender-api.py'],
    zip_safe=False,
    license='MIT',
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
)
コード例 #4
0
from setuptools import setup, setuptools

# with open("README.md", "r") as fh:
#    long_description = fh.read()

setuptools.setup(
    name="plague_sim",
    version="0.0.1",
    author="R. Juall",
    author_email="*****@*****.**",
    description="A package implementing a disease model formula",
    # long_description=long_description,
    # long_description_content_type="text/markdown",
    # url="https://github.com/pypa/sampleproject",
    packages=setuptools.find_packages(),
    install_requires=[
        'mpmath',
        'json',
    ],
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
    zip_safe=False,
)
コード例 #5
0
ファイル: setup.py プロジェクト: Ivan1931/rcfg-generator
config = {
    'description': 'Provides a dsl to generate random strings in forbidding context free grammars',
    'author': 'Jonah Hooper, Jeroen Schmidt',
    'url': '',
    'download_url': '',
    'author_email': '*****@*****.**',
    'version': '0.1',
    'install_requires': ['nose', 'funcy'],
    'packages': [],
    'scripts': [],
    'name': 'rcfg',
    'licence': 'MIT'
}

try:
    from setuptools import setuptools
    setuptools.setup(**config)
except ImportError:
    from distutils.core import setup
    setup(**config)
コード例 #6
0
ファイル: setup.py プロジェクト: TravisRobson/Finance
from setuptools import setuptools

setuptools.setup()
コード例 #7
0
from setuptools import setuptools

setuptools.setup(
    name="alone-in-space",
    version="0.0.1",
    author="Example Author",
    author_email="*****@*****.**",
    description="A bootstrapped game with the ursina game engine",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/Tech-Helper503/alone-in-space",
    packages=setuptools.find_packages(),
    classifiers=[
        "Programming Language :: Python :: 3 :: 2",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent :: Microsoft Windows :: MacOS X :: Debian/Ubuntu Linux",
        "Intented Audiences :: Beginners :: Gamer"
    ],
)
コード例 #8
0
from setuptools import setuptools, find_packages

with open("README.md", "r") as fh:
    long_description = fh.read()

setuptools.setup(
    name="flatpak-sync",
    version="1.0.3",
    author="JJO",
    author_email="*****@*****.**",
    description=
    "Automate installation of Flatpak Applications, Permissions and Repositories",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/jeteokeeffe/flatpak-sync",
    packages=find_packages(exclude=["tests.*", "tests"]),
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: POSIX :: Linux",
    ],
    entry_points={"console_scripts": ["flatpak-sync=flatpaksync.main:main"]},
    python_requires='>=3.6',
    install_requires=['Click'])
コード例 #9
0
from setuptools import setuptools

with open("README.md", "r") as fh:
    long_description = fh.read()

setuptools.setup(name='obilisk',
                 packages=setuptools.find_packages(),
                 description='Symbolic Math Library for Python',
                 long_description=long_description,
                 long_description_content_type="text/markdown",
                 version='1.0',
                 url='https://github.com/TheRebelOfBabylon/obilisk',
                 author='TheRebelOfBabylon',
                 author_email='*****@*****.**',
                 keywords=['pip', 'obilisk'])
コード例 #10
0
from setuptools import setuptools

setuptools.setup(
    name='Control_Servo',
    version='1.0.0',
    description='Control A Servo Motor Using GPIO',
    url=
    'https://github.com/NoelleTemple/noelle_digital_controls/upload/master/servo_control',
    author='Noelle Lewandowski',
    packages=setuptools.find_packages(),
    install_requires=['RPi.GPIO'])
コード例 #11
0
ファイル: setup.py プロジェクト: nipunaw/Lotus
from setuptools import setuptools

setuptools.setup(
    name="lotus-notes",
    version="1.0.47",
    packages=["src"],
    license='MIT',
    author=
    "Nipuna Weerapperuma, Spencer Bass, David Jaworski, Carlos Morales-Diaz, & Hannah Williams",
    description="Lotus - A hand-written notes application with scheduler.",
    url="https://github.com/nipunaw/Lotus/tree/design-prototype",
    install_requires=[
        "opencv-python-headless", "PyQt5", "wsl", "wheel", "pytesseract"
    ],
    include_package_data=True,
    entry_points={
        'console_scripts': ['lotus = src.command_line:main'],
    },
    python_requires='>=3.7')
コード例 #12
0
ファイル: setup.py プロジェクト: matttsb/badoo
long_description = readme
with open('HISTORY.rst') as history_file:
    history = history_file.read()

requirements = ['Click>=7.0', 'selenium', 'BeautifulSoup4', 'lxml', 'Pillow']

setuptools.setup(
    name="badoo",  # Replace with your own username
    version="1.6.0",
    author="Matt Burke",
    author_email='*****@*****.**',
    description="Remotely control badoo",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url='https://github.com/matttsb/badoo',
    packages=setuptools.find_packages(exclude=['tests*']),
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
    python_requires='>=3.6',
)
setup(
    author="Matt Burke",
    author_email='*****@*****.**',
    python_requires='>=3.5',
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Intended Audience :: Developers',
コード例 #13
0
from setuptools import setup, find_packages, setuptools

with open('requirements.txt') as f:
    requirements = f.read().splitlines()

with open("README.md", "r") as fh:
    long_description = fh.read()

setuptools.setup(
    name = "phe-recommender", # Replace with your own username
    version = "0.0.1",
    author = "Daniele Dal Grande",
    author_email = "*****@*****.**",
    description = "A product recommender system that suggests healthier items.",
    long_description = long_description,
    long_description_content_type = "text/markdown",
    install_requires=requirements,
    url = "",
    packages = setuptools.find_packages(),
    classifiers = [
        "Programming Language :: Python :: 3.6.9",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
    python_requires='>=3.6.9',

)
コード例 #14
0
    'License :: OSI Approved :: Python Software Foundation License',
    'Programming Language :: Python',
    'Programming Language :: Python :: 2',
    'Programming Language :: Python :: 2.6',
    'Programming Language :: Python :: 2.7',
    'Programming Language :: Python :: 3',
    'Programming Language :: Python :: 3.2',
    'Topic :: Utilities',
    ]

extra = {}



cbucho_module = Extension('cbucho',
                          sources = ['cbuchomodule.c'])

setup(name = name,
      version = version,
      description = short_description,
      long_description = read('README.rst'),
      classifiers = classifiers,
      keywords = ['practice',],
      author = 'Yoshifumi YAMAGUCHI (ymotongpoo)',
      author_email = '*****@*****.**',
      url='http://github.com/ymotongpoo/cbucho/',
      license='PSL',
      ext_modules = [cbucho_module],
      **extra
      )
コード例 #15
0
ファイル: setup.py プロジェクト: csepy/csepy
#!/usr/bin/python3
from setuptools import setuptools, find_packages


with open("README.md", "r") as fh:
    long_description = fh.read()


setuptools.setup(
     name='csepy',
     version='0.0.1.2',
     author="Yuval Feldman",
     author_email="*****@*****.**",
     description="A python command service engine package",
     long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/csepy/csepy",
    packages=find_packages(),
    classifiers=[
         "Programming Language :: Python :: 3",
         "License :: OSI Approved :: MIT License",
         "Operating System :: OS Independent",
    ],
 )
コード例 #16
0
from setuptools import setuptools, find_packages

with open("README.md", "r") as fh:
    long_description = fh.read()

setuptools.setup(
    name="gnome-extensions-sync",
    version="0.9.5",
    author="JJO",
    author_email="*****@*****.**",
    description=
    "Automate installation of gnome extensions for your linux environment",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/jeteokeeffe/gnome-extensions-sync",
    packages=find_packages(exclude=["tests.*", "tests"]),
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: Linux X11 Applications",
    ],
    entry_points={
        "console_scripts":
        ["gnome-extensions-sync=gnomeextensionssync.main:main"]
    },
    python_requires='>=3.6',
    install_requires=['Click', 'requests'])
コード例 #17
0
from setuptools import setuptools

setuptools.setup(
    name="watch",
    version="1.1",
    maintainer="Skip Montanaro",
    maintainer_email="*****@*****.**",
    description="Typing Watcher",
    url="https://github.com/smontanaro/python-bits/watch",
    packages=['watch'],
    scripts=['src/watchapp.py', 'src/watch-server.py'],
)
コード例 #18
0
from setuptools import setuptools

with open("README.md", "r") as fh:
    long_description = fh.read()

setuptools.setup(
    name="jlod",
    version="0.0.1",
    author="JLOD.ORG",
    author_email="*****@*****.**",
    description="Self Contained Document Oriented Database",
    long_description=
    "JLOD stands for JSON Local Document Database, it is a serverless in-process library that implements a self-contained document-oriented database use for storing small application data within an application without an internet connection. The database is like MongoDB, it uses Collection, Documents, and JSON objects.  The JLOD is a version of SQLite in object-oriented format, the JLOD collections can be exported to Remote MongoDB collection as well as remote MongoDB collection can also be imported to the JLOD database. JLOD is an embedded document-oriented database library. Unlike MongoDB.  JLOD does not have a separate server process. JLOD reads and writes the data to ordinary disk files.  The complete JLOD database along with the collections and the documents are contained in a disk file. The folder is a database in JLOD while the file is a collection, and each line in the file is a document.",
    long_description_content_type="text/markdown",
    url="https://github.com/rabs-developer/jlod_db",
    packages=setuptools.find_packages(),
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: MIT License",
        "Operating System :: OS Independent",
    ],
    install_requires=['pymongo'],
    python_requires='>=3.8',
    entry_points={
        'console_scripts': [
            'jlod=jlod_cli:main',
        ],
    },
)