-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·49 lines (33 loc) · 1.12 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
#!/usr/bin/env python3
import re
from setuptools import setup
VERSION = '0.6.1'
def main():
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='beauty-print',
version=VERSION,
description="Beautifully print Python data",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Lonami/bprint',
download_url='https://github.com/Lonami/bprint',
author='Lonami',
author_email='[email protected]',
license='CC0',
python_requires='>=3.6',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Communications :: Chat',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
keywords='print pprint',
py_modules=['bprint'],
)
if __name__ == '__main__':
main()