-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
executable file
·59 lines (45 loc) · 1.32 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@author: python273
@contact: https://python273.pw/
@license: MIT License, see LICENSE file
Copyright (C) 2018
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = '2.2.0'
with open('README.md') as f:
long_description = f.read()
setup(
name='telegraph',
version=version,
author='python273',
author_email='telegraph@python273.pw',
url='https://github.com/python273/telegraph',
description='Telegraph API wrapper',
long_description=long_description,
long_description_content_type='text/markdown',
download_url='https://github.com/python273/telegraph/archive/v{}.zip'.format(
version
),
license='MIT',
packages=['telegraph'],
install_requires=['requests'],
extras_require={
'aio': ['httpx'],
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
)