File: setup.py

package info (click to toggle)
python-fswrap 1.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 192 kB
  • sloc: python: 786; xml: 4; makefile: 3
file content (32 lines) | stat: -rwxr-xr-x 856 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
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python

from setuptools import setup

try:
    long_description = open('README.rst', 'rt').read()
except IOError:
    long_description = ''

setup(
    name='fswrap',
    version='1.0.1',
    author='fswrap contributors',
    author_email='navilan@folds.in',
    url='http://github.com/hyde/fswrap',
    description='An opinionated wrapper on file system and path functions',
    long_description=long_description,
    license='MIT',
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: MIT License',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Topic :: Software Development',
    ],
    py_modules=['fswrap'],
    tests_require=(
        'nose',
    ),
    test_suite='nose.collector',
)