forked from barneygale/elevate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 808 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
import setuptools
setuptools.setup(
name='raiseup',
version='0.2',
author='Barney Gale and XploreInfinity',
url='https://github.com/XploreInfinity/raiseup',
license='MIT',
description='Python library for requesting root privileges',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages=["raiseup"],
project_urls={
"Bug Tracker": "https://github.com/XploreInfinity/raiseup/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: BSD :: FreeBSD",
],
)