forked from banksalad/K-Format
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 948 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
import setuptools
import kformat
with open('README.md') as fp:
long_description = f'\n{fp.read()}'
setuptools.setup(
name='K-Format',
version=kformat.__version__,
description='Python Library for dealing with KCB K-Format',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
python_requires='>=3.7',
url='https://github.com/Rainist/K-Format',
author='Sunghyun Hwang',
author_email='me' '@' 'sunghyunzz.com',
maintainer='Rainist',
maintainer_email='engineering' '@' 'rainist.com',
classifiers=[
'Development Status :: 3 - Alpha',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
],
packages=setuptools.find_packages(exclude=['tests*']),
setup_requires=['pytest-runner'],
tests_require=['pytest'],
test_suite='tests',
)