forked from accessibleapps/platform_utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 855 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
27
28
29
from setuptools import setup, find_packages
import io
__version__ = '1.5.0'
setup(
name="platform_utils",
author="Christopher Toth",
author_email="[email protected]",
version=__version__,
description="""Cross-platform utilities for accomplishing some tasks that the stdlib isn't equipped to provide""",
long_description=io.open("README.rst", encoding="UTF8").read(),
packages=find_packages(),
zip_safe=False,
extras_require={
':sys_platform == "win32"': [
'pywin32',
'winpaths',
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
],
)