๐Ÿ“ฆ joniumGit / headers

๐Ÿ“„ setup.py ยท 37 lines
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
37import pathlib

from setuptools import setup, find_packages
from create import read_version

here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')

version = read_version()

setup(
    name='httpheaders',
    version=version,
    description='HTTP Headers',
    long_description=long_description,
    long_description_content_type='text/markdown',
    url='https://github.com/joniumGit/headers',
    author='joniumGit',
    # https://pypi.org/classifiers/
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: MIT License',
        'Programming Language :: Python :: 3',
        'Topic :: Software Development',
    ],
    keywords='HTTP, headers, API',
    package_dir={'': 'src'},
    packages=find_packages(where='src'),
    python_requires='>=3',
    install_requires=[],
    project_urls={
        'Bug Reports': 'https://github.com/joniumGit/headers',
        'Source': 'https://github.com/joniumGit/headers',
    },
)