-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (33 loc) · 1.06 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
from distutils.core import setup, Extension
module = Extension(
'csvloader',
define_macros = [],
include_dirs = ['.'],
libraries = [],
sources = ['./csvloader/csvloader.c']
)
VERSION = '0.0.2'
setup(
name='csvloader',
packages=['csvloader'],
version=VERSION,
description='Fast C-implementation for reading CSV data into Python',
author='Jeroen van der Heijden',
author_email='jeroen@transceptor.technology',
url='https://github.com/transceptor-technology/csvloader',
ext_modules = [module],
download_url=
'https://github.com/transceptor-technology/'
'csvloader/tarball/{}'.format(VERSION),
keywords=['deserializer', 'csv'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development'
],
)