-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (33 loc) · 1.21 KB
/
setup.py
File metadata and controls
41 lines (33 loc) · 1.21 KB
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
from setuptools import setup, find_packages, Extension
# Use DESCRIPTION.md for the PyPi listing.
with open('DESCRIPTION.md', 'r') as description_file:
long_desc = description_file.read()
orthtree_extension = Extension("orthtree", sources=["orthtree/orthtree.c"])
setup(
# Basic Data
name='orthtree',
version='0.1.0',
# Metadata on PyPi
author='AssortedFantasy',
author_email='jehanzeb.mirza@yahoo.com',
description='fast spacially aware n-dimensional container type',
long_description=long_desc,
license='MIT',
keywords='quadtree octtree dimensions fast',
url='https://github.com/AssortedFantasy/orthtrees',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Operating System :: Microsoft :: Windows',
],
# Packaging and Dependencies
packages=find_packages(exclude=['docs', 'tests*']),
py_modules=[],
ext_modules=[orthtree_extension],
# Write the names of dependencies. Ex: numpy, as strings
install_requires=[],
python_requires='>=3',
)