-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (43 loc) · 1.38 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
import os
from setuptools import setup
HERE = os.path.dirname(__file__)
with open(os.path.join(HERE, 'README.md')) as fh:
long_description = fh.read()
with open(os.path.join(HERE, 'githubtest', '__init__.py')) as fh:
version = fh.readline().split('"')[1]
setup(
name='githubtest',
version=version,
url='https://github.com/damoti/githubtest',
license='BSD',
description='Testing framework for writing GitHub Apps in Python.',
long_description=long_description,
long_description_content_type="text/markdown",
author='Lex Berezhny',
author_email='[email protected]',
keywords='github,ci,unittest,integration',
python_requires='>=3.8',
packages=['githubtest'],
install_requires=[
'requests',
'beautifulsoup4',
'html5lib',
'pyotp',
'github3.py',
'aiohttp',
'python-slugify',
'streamcontroller',
],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: AsyncIO',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Version Control :: Git',
'Topic :: Utilities',
],
)