-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (42 loc) · 1.41 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
39
40
41
42
43
44
45
46
47
48
49
# setup.py for planar
#
# $Id$
import os
import sys
import shutil
from setuptools import setup
srcdir = os.path.dirname(__file__)
def read(fname):
return open(os.path.join(srcdir, fname)).read()
include_dirs = ['include']
extra_compile_args = []
setup(
name='chalk-planar',
version='0.4', # *** REMEMBER TO UPDATE __init__.py ***
description='2D planar geometry library for Python.',
long_description=read('README.txt'),
provides=['planar'],
author='Casey Duncan',
author_email='[email protected]',
url='http://bitbucket.org/caseman/planar/',
license='BSD',
classifiers = [
'Development Status :: 3 - Alpha',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
],
platforms = 'any',
package_dir={'planar': 'planar',
'planar.test': 'test'},
packages=['planar', 'planar.test'],
package_data={"planar": ["py.typed", "vector.pyi", "transform.pyi"]},
)