-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
32 lines (28 loc) · 1008 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import multiprocessing
import re
from setuptools import setup, find_packages
setup(
name='inkscape-openscad-dxf',
version='0.0.4dev',
description='Inkscape OpenSCAD DXF Export',
long_description=open('README.rst').read(),
author='Brad Pitcher',
author_email='[email protected]',
url='https://github.com/brad/Inkscape-OpenSCAD-DXF-Export',
packages=find_packages(exclude=['ez_setup', 'tests', 'tests.*']),
package_data={'openscad_dxf': ['../openscad_dxf.inx']},
include_package_data=True,
install_requires=["setuptools"],
license='GPL',
test_suite='nose.collector',
tests_require='nose',
classifiers=(
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: PyPy'
),
)