-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (29 loc) · 856 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (29 loc) · 856 Bytes
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',
)