forked from fohrloop/pathtub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 975 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
import setuptools
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name='pathtub',
version='1.1.2',
url='https://github.com/np-8/pathtub',
author='Niko Pasanen',
description='Reading and editing Windows PATH.',
long_description=long_description,
long_description_content_type='text/markdown',
author_email='niko@pasanen.me',
license='MIT',
packages=setuptools.find_packages(),
keywords=['PATH', 'Windows', 'winpath', 'powershell'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Environment :: Win32 (MS Windows)',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Topic :: System :: Shells',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)