-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (30 loc) · 1.16 KB
/
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
30
31
32
# https://medium.com/@joel.barmettler/how-to-upload-your-python-package-to-pypi-65edc5fe9c56
# rm -rf ~/github/superimport/dist/*; python3 setup.py sdist;twine upload dist/*
from setuptools import setup
from superimport._version import __version__
setup(
name="superimport",
packages=["superimport"],
version=__version__,
license="MIT",
description="Simple package to lookup missing packages and autoinstall them.",
author="Mahmoud Soliman",
author_email="[email protected]",
url="https://github.com/probml/superimport",
download_url="https://github.com/probml/superimport/releases",
keywords=["setup", "runtime", "automation"],
install_requires=[
"requests"
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)