forked from joelibaceta/fake-pip-package
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 1.05 KB
/
setup.py
File metadata and controls
31 lines (28 loc) · 1.05 KB
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
import sys
from setuptools import setup, find_packages
print("Rlly?, do you want to install this?")
setup(
name="requirements.txt",
version="1.0.0",
author="Joel Ibaceta",
author_email="mail@joelibaceta.com",
license='MIT',
description="A joke for developers who forget the -r argument in pip install command",
long_description="A joke for developers who forget the -r argument in pip install command",
url="https://github.com/joelibaceta/fake-pip-package",
project_urls={
'Source': 'https://github.com/joelibaceta/fake-pip-package',
'Tracker': 'https://github.com/joelibaceta/fake-pip-package/issues'
},
packages=find_packages(),
include_package_data=True,
install_requires=[],
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords='Joke, pip, requirements.txt',
)
print("LOL, have you installed a package named 'requirements.txt'...")