Enable long_description in package
Fix package URL
This commit is contained in:
Родитель
6872af6580
Коммит
534b46c4b9
9
setup.py
9
setup.py
|
@ -1,10 +1,17 @@
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
from os import path
|
||||||
|
|
||||||
|
here = path.abspath(path.dirname(__file__))
|
||||||
|
with open(path.join(here, 'README.md')) as f:
|
||||||
|
long_description = f.read()
|
||||||
|
|
||||||
version = '2.2.0'
|
version = '2.2.0'
|
||||||
|
|
||||||
setup(name='agithub',
|
setup(name='agithub',
|
||||||
version=version,
|
version=version,
|
||||||
description="A lightweight, transparent syntax for REST clients",
|
description="A lightweight, transparent syntax for REST clients",
|
||||||
|
long_description=long_description,
|
||||||
|
long_description_content_type='text/markdown',
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 5 - Production/Stable',
|
'Development Status :: 5 - Production/Stable',
|
||||||
'Environment :: Console',
|
'Environment :: Console',
|
||||||
|
@ -17,7 +24,7 @@ setup(name='agithub',
|
||||||
keywords=['api', 'REST', 'GitHub', 'Facebook', 'SalesForce'],
|
keywords=['api', 'REST', 'GitHub', 'Facebook', 'SalesForce'],
|
||||||
author='Jonathan Paugh',
|
author='Jonathan Paugh',
|
||||||
author_email='jpaugh@gmx.us',
|
author_email='jpaugh@gmx.us',
|
||||||
url='https://github.com/jpaugh/agithub',
|
url='https://github.com/mozilla/agithub',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
|
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
|
|
Загрузка…
Ссылка в новой задаче