-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 1.05 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
from distutils.core import setup, Extension
setup(
name='luxem',
version='0.0.2',
author='Rendaw',
author_email='[email protected]',
packages=['luxem'],
url='https://github.com/Rendaw/luxem-python',
download_url='https://github.com/Rendaw/luxem-python/tarball/v0.0.2',
description='luxem is a typed data serialization format similar to JSON.',
long_description=open('readme.md', 'r').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
ext_modules=[
Extension(
'_luxem',
sources=[
'_luxem.c',
'c/luxem_rawread.c',
'c/luxem_rawwrite.c',
'c/luxem_internal_common.c',
]
)
]
)