forked from nccgroup/uninstallable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 916 Bytes
/
setup.py
File metadata and controls
36 lines (31 loc) · 916 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
25
26
27
28
29
30
31
32
33
34
35
36
import sys
if len(sys.argv) != 4 or (
sys.argv[1] != "bdist_wheel" or
sys.argv[2] != "-p" or
"linux" not in sys.argv[3]
):
sys.stderr.write(b"usage: python setup.py bdist_wheel -p manylinux1_x86_64\n")
sys.exit(1)
from setuptools import setup
setup(
name='uninstallable',
version='0.9.4',
description='A purposefully uninstallable package.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Jeff Dileo',
author_email='jeff.dileo@nccgroup.com',
url='https://github.com/nccgroup/uninstallable',
license='BSD (2 Clause)',
install_requires=[
'pywin32 == 224;platform_system=="Linux"',
],
include_package_data=True,
packages=['uninstallable'],
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Operating System :: OS Independent'
],
keywords='uninstallable'
)