Пример #1
0
from setuputils import setup

version = "0.1"

setup(
    name='infinispan-py',
    version=version,
    description='Python client for Infinispan key-value store',
    long_description="",
    url='http://github.com/VaclavDedik/infinispan-py',
    author='Vaclav Dedik',
    author_email='*****@*****.**',
    maintainer='Vaclav Dedik',
    maintainer_email='*****@*****.**',
    keywords=['infinispan', 'key-value store'],
    license='MIT',
    packages=['infinispan'],
    install_requires=[
        'future',  #==0.16.0
        'futures',  #==3.0.5
        'jsonpickle'  #==0.9.3
    ])
Пример #2
0
try:
    from setuputils import setup
except:
    from distutils.core import setup


    
setup(
    name = 'gpfs',
    version = '0.0.1',
    description = 'libraries for GPFS',
    author = 'stevec7',
    author_email = 'none',
    packages = ['gpfs']






)
Пример #3
0
# get the version and build number
version = open("VERSION").readline().strip()
(major, minor) = version.split(".")

buildfile = open("BUILD", "r")
build = int(buildfile.readline().strip())
buildfile.close()

# Update build number
build += 1
buildfile = open("BUILD", "w")
buildfile.write(str(build) + "\n")
buildfile.close()

# check in the VERSION and BUILD files

setup(
    name="salib",
    version="%s_%d" % (version, build),
    description="Library and CLI script to interact with an HP ILO 2",
    author="Mark Lamourine",
    author_email="*****@*****.**",
    url="http://irish.lab.bos.redhat.com/cloudstack/ilolib/",
    package_dir={"": "src"},
    py_modules=["salib", "sassh", "saurl"],
    scripts=["src/sacommand"],
    license="GPL",
    long_description="",
)
Пример #4
0
# get the version and build number
version = open("VERSION").readline().strip()
(major, minor) = version.split('.')

buildfile = open("BUILD", 'r')
build = int(buildfile.readline().strip())
buildfile.close()

# Update build number
build += 1
buildfile = open("BUILD", 'w')
buildfile.write(str(build) + "\n")
buildfile.close()

# check in the VERSION and BUILD files

setup(
    name = "vcmlib",
    version = "%s_%d" % (version, build),
    description = "Library and CLI script to interact with an HP Virtual Connection Manager",
    author = "Mark Lamourine",
    author_email = "*****@*****.**",
    url = "http://irish.lab.bos.redhat.com/cloudstack/ilolib/",
    package_dir = {'': 'src'},
    py_modules = ['vcmlib', 'vcmssh', 'vcmurl'],
    scripts = ['src/vcmcommand'],
    license="GPL",
    long_description=""
    )
Пример #5
0
try:
    from setuputils import setup
except:
    from distutils.core import setup

setup(name='gpfs',
      version='0.0.1',
      description='libraries and tools for GPFS',
      author='stevec7',
      author_email='none',
      packages=['gpfs'])
Пример #6
0
try:
    from setuputils import setup
except:
    from distutils.core import setup


    
setup(
    name = 'iointegrity',
    version = '0.1.0',
    description = 'libraries and tools to check iointegrity',
    author = 'stevec7',
    author_email = 'none',
    packages = ['iointegrity']






)
Пример #7
0
try:
    from setuputils import setup
except:
    from distutils.core import setup


    
setup(
    name = 'ratking',
    version = '0.0.1',
    description = 'cron replacement',
    author = 'stevec7',
    author_email = '*****@*****.**',
    packages = ['ratking']






)
Пример #8
0
from setuputils import setup

setup(
        install_requires=['sqlalchemy',
            'pbkdf2',
            'flask']
        )

Пример #9
0
# get the version and build number
version = open("VERSION").readline().strip()
(major, minor) = version.split('.')

buildfile = open("BUILD", 'r')
build = int(buildfile.readline().strip())
buildfile.close()

# Update build number
build += 1
buildfile = open("BUILD", 'w')
buildfile.write(str(build) + "\n")
buildfile.close()

# check in the VERSION and BUILD files

setup(
    name = "oalib",
    version = "%s_%d" % (version, build),
    description = "Library and CLI script to interact with an HP OpenAdministrator",
    author = "Mark Lamourine",
    author_email = "*****@*****.**",
    url = "http://irish.lab.bos.redhat.com/cloudstack/ilolib/",
    package_dir = {'': 'src'},
    py_modules = ['oalib', 'oassh', 'oaurl'],
    scripts = ['src/oacommand'],
    license="GPL",
    long_description=""
    )
Пример #10
0
try:
    from setuputils import setup
except ImportError:
    from distutils.core import setup

setup(
    name='regenerate',
    version='1.0.0',
    license='License.txt',
    author='Donald N. Allingham',
    author_email='*****@*****.**',
    description='Register editor for ASIC/FPGA designs',
    long_description='Allows users to manange registers for '
    'ASIC and FPGA designs. Capable of generating Verilog '
    'RTL, test code, C and assembler header files, and documentation.',
    packages=["regenerate", "regenerate.db", "regenerate.importers",
              "regenerate.extras", "regenerate.settings", "regenerate.ui",
              "regenerate.writers"],
    package_data={
        'regenerate': ['data/ui/*.ui', 'data/media/*.svg', 'data/help/*.rst',
                       'data/media/*.png', 'data/extra/*.odt', 'data/*.*',
		       'writers/templates/*']
    },
    url="https://github.com/dallingham/regenerate",
    scripts=["bin/regenerate", "bin/regbuild", "bin/regupdate", "bin/regxref",
             "bin/regdiff", "bin/ipxact2reg"],
    classifiers=
    ['Operating System :: POSIX', 'Programming Language :: Python :: 2.7',
     'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
     'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)'], )