File: setup.py

package info (click to toggle)
python-serverfiles 0.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 140 kB
  • sloc: python: 549; makefile: 14
file content (20 lines) | stat: -rw-r--r-- 574 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python

from setuptools import setup


if __name__ == '__main__':
    setup(
        name='serverfiles',
        description="An utility that accesses files on a HTTP server and stores them locally for reuse.",
        author='Bioinformatics Laboratory, FRI UL',
        author_email='marko.toplak@fri.uni-lj.si',
        packages=["serverfiles"],
        install_requires=[
            'requests>=2.11.1',
        ],
        version='0.3.0',
        zip_safe=False,
        url="https://github.com/biolab/serverfiles",
        test_suite="tests.suite"
    )