Example #1
0
from setuptool import setup
from setuptool.command.develop import develop as _develop
from notebook.nbextension import install_nbextension
from notebook.services.config import ConfigManager
import os

extension_dir = os.path.join(os.path.dirname(__file__), 'validation', 'static')


class develop(_develop):
    def run(self):
        _develop.run(self)
        install_nbextension(extension_dir,
                            symlink=True,
                            overwrite=True,
                            user=True,
                            destination="validation")
        cm = ConfigManager()
        cm.update("notebook", {"load_extensions": {"example/index": True}})


setup(name="validation",
      version="0.1",
      descrition="a validation test for jupyter-react-js, using jupyter-react",
      author="Chris Helm, Thomas Pouvreau",
      licence="ISC",
      data_files=[('share/jupyter/nbextensions/validation',
                   ['validation/static/index.js'])],
      install_requires=["ipython", "jupyter-react"])
Example #2
0
try:
    from setuptool import setup
except ImportError:
    from distutils.core import setup

config = {
    'name' : 'pyMiner',
    'version' : '0.1',
    'description' : 'Python implementations of various data mining and machine learning algorithms.',
    'author' : 'Vassilis S. Moustakas',
    'author_email' : '*****@*****.**',
    'license' : 'Apache v.2.0',
    'url' : 'https://github.com/vmous/pyMiner',
    'packages' : ['miner']
}

setup(**config)
Example #3
0
#!/usr/bin/env python

from setuptool import setup

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

setup(name="jumpdrive",
      version=0.01,
      description="AI Application to the game 'Jump Drive'",
      author="Jordan Gilman",
      author_email="*****@*****.**")
Example #4
0
import os, sys
HERE = os.patch.abspath(os.path.dirname(__file__))

from setuptool import setup, find_packages

setup(
    name='Frigid',
    version='0.0.1',
    author='DawsonReid',
    author_email='*****@*****.**',
    packages=['lyne', 'test'],
    package_data={
        '': ['*.txt'],
        },
    )

Example #5
0
#!/usr/bin/env python

from setuptool import setup

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

setup(name="dspecies",
      version=0.01,
      description="AI Application to the game 'Dominant Species'",
      author="Jordan Gilman",
      author_email="*****@*****.**")
Example #6
0
setup(
    name=find_value('title'),
    version=find_value('version'),
    description=find_value('description'),
    long_description=read('README.md'),
    url=find_value('url'),
    author=find_value('author'),
    author_email=find_value('email'),
    license=find_value('license'),
    python_requires='>=3.6',
    keywords=find_value('keywords'),
    packages=['pvpn'],
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Environment :: Console',
        'Intended Audience :: Developers',
        'Natural Language :: English',
        'Topic :: Software Development :: Build Tools',
        'License :: OSI Approved :: MIT License',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.6',
        'Programming Language :: Python :: 3.7',
        'Programming Language :: Python :: 3.8',
        'Programming Language :: Python :: 3.9',
        'Programming Language :: Python :: 3.10',
    ],
    install_requires=[
        'pycryptodome >= 3.7.2',
        'pproxy >= 2.0.0',
    ],
    entry_points={
        'console_scripts': [
            'pyvpn = pyvpn.server:main',
        ],
    },
)
Example #7
0
from setuptool import setup

setup(tests_require=['pytest'])
Example #8
0
try:
    from setuptool import setup
except ImportError:
    from ditutils.core import setup

name = 'python-blueback'
version = '0.1'
packages = ['python-blueback']
description='Cloud backup utility'
requires = []

setup(
    name=name,
    description=description,
    version=version,
    author='Anton Cohen',
    author_email='*****@*****.**',
    url='https://github.com/antoncohen' + name,
    packages=packages,
    install_requires=requires,
    scripts=[]
)


Example #9
0
import os
from setuptool import setup, find_packages

#Function to read the README file
def read(fname):
    return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(
    name = "mangascraper",
    version = "0.0.1",
    author = "Suhith Rajesh",
    author_email = "*****@*****.**",
    description = ("A simple mangascraper with beautiful soup to scrape manga off of mangapanga.com"),
    long_description = read('README'),
    classifiers = [
        "Programming Language :: Python :: 2.7",
    ],
    packages = find_packages(),
)
Example #10
0
from setuptool import setup,find_packages

setup(name = "Data_Science_Python",
      version = '0.0.1',
      url = 'https://github.com/deepak223098/Data_Science_Python'
      license = 'BSD',
      author = 'deepak'
      packagees = find_packages(),
      install_requires = ['Pyqt5',
                          'pandas',
                          'sqlalchemy',
                          'nltk',
                          'numpy',
                          'jupyter',
                          'python-twitter'],
      entry_points ={},
      extras_require = {'dec':['flake8']},)
Example #11
0
#!/usr/bin/env python

from setuptool import setup

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

setup(name="mma odds",
      version=0.01,
      description="Analysis of MMA sporting event stats",
      author="Jordan Gilman",
      author_email="*****@*****.**")