-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 695 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 695 Bytes
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
#!/usr/bin/env python3
from distutils.core import setup, Extension
import ddate
setup(
name="ddate",
packages=[
'ddate'
],
version=ddate.__version__,
description='ddate C bindings',
author='Dash Winterson',
author_email='dashdanw@gmail.com',
url='https://github.com/dashdanw/ddate-python',
download_url='https://github.com/dashdanw/ddate-python/archive/{}.tar.gz'.format(ddate.__version__),
keywords=[
'ddate',
'linux',
'util',
'linux-util'
],
classifiers=[],
long_description="C binding for oldschool util-linux ddate.",
ext_modules=[Extension("cddate", ["cddate/bind.c", "cddate/libddate.c"])]
)