-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
26 lines (24 loc) · 874 Bytes
/
setup.py
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
import os.path
from setuptools import setup
from path import __version__
setup(name='path',
version=__version__,
author='Mahan Marwat',
author_email='[email protected]',
url='https://github.com/mahanmarwat/path',
download_url='',
license='MIT',
description='Intelligent Path Module for Pretty People',
long_description=open('README.rst').read(),
keywords='os path unipath pathlib http url',
py_modules=['path'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)