forked from ajakubek/python-llist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.27 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
VERSION='0.7'
from distutils.core import setup, Extension
sources=[ 'src/llist.c',
'src/dllist.c',
'src/sllist.c',
'src/utils.c',
]
setup(name='llist',
description='Linked list data structures for Python',
long_description=open('README.md').read(),
author='Adam Jakubek, Rafał Gałczyński',
author_email='[email protected], [email protected]',
version=VERSION,
url='https://github.com/ajakubek/python-llist',
download_url='http://pypi.python.org/pypi/llist/%s' % VERSION,
license='MIT',
keywords='linked list, list',
ext_modules=[Extension('llist', sources)],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: C',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)