forked from jaraco/path
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 843 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 843 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
#!/usr/bin/env python
import sys
import setuptools as st
sys.path.insert(0, '.')
import versioneer
st.setup(name='path_helpers',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Helper class and functions for working with file path',
author='Christian Fobel',
author_email='christian@fobel.net',
url='http://github.com/cfobel/path_helpers',
license='MIT License',
packages=['path_helpers'],
classifiers=
['Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'])