-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
41 lines (39 loc) · 1.43 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
33
34
35
36
37
38
39
40
41
from setuptools import setup
import httpimport
# Taken from:
# https://packaging.python.org/en/latest/tutorials/packaging-projects/
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='httpimport',
version=httpimport.__version__,
description='Module for remote in-memory Python package/module loading through HTTP',
long_description=long_description,
long_description_content_type='text/markdown',
author=httpimport.__author__,
author_email='[email protected]',
license='Apache2',
url=httpimport.__github__,
py_modules=['httpimport'],
classifiers=[
'Development Status :: 6 - Mature',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Testing',
],
keywords=[
'import',
'loader',
'memory',
'http',
'network'],
)