|
1 | 1 | from setuptools import setup, find_packages
|
2 |
| -from codecs import open |
3 |
| -from os import path |
4 | 2 |
|
5 |
| -here = path.abspath(path.dirname(__file__)) |
| 3 | +long_description = ''' |
| 4 | +=========================================== |
| 5 | +tessagon: tessellation / tiling with python |
| 6 | +=========================================== |
6 | 7 |
|
7 |
| -# Get the long description from the README file |
8 |
| -with open(path.join(here, 'README.md'), encoding='utf-8') as f: |
9 |
| - long_description = f.read() |
| 8 | +Tessellate your favorite 3D surfaces (technically, 2D manifolds) with |
| 9 | +triangles, hexagons, or a number of other curated tiling types! |
| 10 | +
|
| 11 | +Please visit the Github repository for documentation: |
| 12 | +
|
| 13 | +`<https://github.com/cwant/tessagon>`_ |
| 14 | +
|
| 15 | +Either checkout the code from the Github project, or install via pip:: |
| 16 | +
|
| 17 | + python3 -m pip install tessagon |
| 18 | +
|
| 19 | +or:: |
| 20 | +
|
| 21 | + pip3 install tessagon |
| 22 | +
|
| 23 | +'''[1:-1] |
10 | 24 |
|
11 | 25 | setup(
|
12 | 26 | name='tessagon',
|
13 |
| - version='0.4', |
| 27 | + version='0.4.2', |
14 | 28 | description='Tessellate your favorite 2D manifolds with triangles, ' +
|
15 | 29 | 'hexagons, and other interesting patterns.',
|
16 | 30 | long_description=long_description,
|
|
27 | 41 | 'Topic :: Multimedia :: Graphics :: 3D Modeling',
|
28 | 42 | 'Topic :: Scientific/Engineering :: Mathematics',
|
29 | 43 | 'Topic :: Scientific/Engineering :: Visualization'],
|
30 |
| - keywords='tesselation tiling modeling', |
| 44 | + keywords='tesselation tiling modeling blender vtk', |
31 | 45 | packages=find_packages(exclude=['tests', 'demo', 'wire_skin.py']),
|
32 | 46 | python_requires='~=3.5'
|
33 | 47 | )
|
0 commit comments