Skip to content

Commit

Permalink
PyPI setup
Browse files Browse the repository at this point in the history
  • Loading branch information
paulds8 committed Oct 1, 2019
1 parent 53474d3 commit 95678c7
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 5 deletions.
6 changes: 6 additions & 0 deletions MANIFEST
@@ -0,0 +1,6 @@
# file GENERATED by distutils, do NOT edit
setup.cfg
setup.py
planetoids\__init__.py
planetoids\planetoids.py
test\test.py
Binary file added dist/planetoids-0.1-alpha.tar.gz
Binary file not shown.
30 changes: 25 additions & 5 deletions setup.py
@@ -1,10 +1,30 @@
from distutils.core import setup

long_description = """
## What is it?
Planetoids is a high level Python API for generating interactive, procedurally generated worlds from data in a pandas DataFrame.
## What does it do?
Currently, Planetoids is able to terraform a planet from two-dimensional data that has an optional cluster attribute. It's still very new and will be growing in capabilities, but for now the library can achieve the following when terraforming a new world:
+ generates somewhere in _space_ to render your creation
+ generates an ecology based on input data statistics
+ generates land masses
+ these land masses have
+ topographic detail (contours)
+ relief detail (gradients)
+ generates lighting effects in the form of a hillshade
For further information please visit the Homepage in the Project links on the left.
"""

setup(
name = 'planetoids', # How you named your package folder (MyLib)
packages = ['planetoids'], # Chose the same as "name"
version = '0.1-alpha', # Start with a small number and increase it with every change you make
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
name = 'planetoids',
packages = ['planetoids'],
version = '0.1-alpha',
license='MIT',
description = 'Planetoids is a high level Python API for generating interactive, procedurally generated worlds from data in a pandas DataFrame.', # Give a short description about your library
long_description=long_description,
author = 'Paul dos Santos',
author_email = 'paulds8@hotmail.com',
url = 'https://github.com/paulds8/planetoids',
Expand All @@ -25,7 +45,7 @@
classifiers=[
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers',
'Topic :: Software Development :: Artistic Software :: Scientific/Engineering',
'Topic :: Software Development',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
Expand Down

0 comments on commit 95678c7

Please sign in to comment.