-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
38 lines (33 loc) · 1 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/env python
# -*- coding: utf-8 -*-
import io
import os
from setuptools import setup
from distutils.core import Extension
bplist = Extension('bpylist.bplist', sources=['src/bplist.c'])
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = '\n' + f.read()
setup(
name='bpylist',
version='0.1.4',
description = "parse and generate binary plists and NSKeyedArchiver archives",
long_description = long_description,
author='Marketcircle Inc.',
author_email='[email protected]',
url='https://github.com/marketcircle/bpylist',
ext_modules=[
bplist,
],
packages=[
'bpylist',
],
include_package_data=True,
test_suite='tests',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.6',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries'
]
)