-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (28 loc) · 960 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
# coding: utf-8
from setuptools import setup, find_packages, Extension
setup(
name='python-skiplist',
version='0.1',
description='SortedSet and SortedDict implementation by using skiplist',
url='https://github.com/sepeth/python-skiplist',
author='Doğan Çeçen',
author_email='sepeth@gmail.com',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Python Software Foundation License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.7',
],
packages=find_packages(exclude=['tests*']),
test_suite='tests',
ext_modules=[
Extension(
'skiplist._sortedset',
extra_compile_args=['-Wall'],
sources=['skiplist/sortedsetobject.c']
),
]
)