-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (38 loc) · 1.38 KB
/
setup.py
File metadata and controls
43 lines (38 loc) · 1.38 KB
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
33
34
35
36
37
38
39
40
41
42
43
# -*- coding: utf-8 -*-
from setuptools import setup
from batchpath import __module__
from batchpath import __version__
def read(filename):
with open(filename) as f:
return f.read()
setup(
name=__module__,
version=__version__,
author='Brian Beffa',
author_email='brbsix@gmail.com',
description='Developer utility to generate and verify pathnames',
long_description=read('README.rst'),
url='https://github.com/brbsix/python-batchpath',
license='GPLv3',
py_modules=['batchpath'],
keywords=['development', 'pathnames', 'paths', 'scan', 'os.walk', 'scandir'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development',
'Topic :: System :: Filesystems',
'Topic :: Utilities',
],
)