-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (24 loc) · 1006 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
from setuptools import setup
setup(name='uniserializer',
version='1.27.0',
description='Fast and efficient universal data serializer',
url='https://github.com/Diffylab/UniSerializer',
author='Diffy',
author_email='diffylab@gmail.com',
download_url = 'https://github.com/Diffylab/UniSerializer/releases/',
keywords = ['Serializer', 'Deserializer', 'data', 'binary', 'encoding', 'schema',' schemaless'],
license='MIT',
package_dir={'uniserializer': 'python'},
packages=['uniserializer'],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)