-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (30 loc) · 930 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='common_util_py',
version='0.0.21',
description='common python utility modules',
long_description=readme,
long_description_content_type='text/markdown',
author='Jason Wee',
author_email='peichieh@gmail.com',
url='https://github.com/jasonwee/common-util-py',
license='Apache Software License',
packages=find_packages(exclude=('tests', 'docs')),
install_requires=[
'pymysql',
'matrix-nio',
],
# deprecated in python3.13
# test_suite = 'nose.collector',
tests_require=["pytest"],
classifiers=[
'Operating System :: POSIX :: Linux',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3',
],
)