Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
n1ckfg committed Nov 1, 2023
1 parent 1253a60 commit f5509c4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@
setup(
name = 'latk', # How you named your package folder (MyLib)
packages = ['latk'], # Chose the same as "name"
version = '1.0.4', # Start with a small number and increase it with every change you make
version = '2.9.0', # Start with a small number and increase it with every change you make
license='apache-2.0', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description = 'Lightning Artist Toolkit for volumetric animation', # Give a short description about your library
author = 'Nick Fox-Gieg', # Type in your name
author_email = 'nick@fox-gieg.com', # Type in your E-Mail
url = 'https://fox-gieg.com', # Provide either the link to your github or to your website
download_url = 'https://github.com/LightningArtist/latkpy/archive/refs/tags/1.0.4.tar.gz', # I explain this later on
download_url = 'https://github.com/LightningArtist/latkpy/archive/refs/tags/2.9.0.tar.gz', # I explain this later on
keywords = ['animation', 'blender', 'drawing'], # Keywords that define your package best
install_requires=[ # I get to this in a second
'numpy'
],
classifiers=[
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Development Status :: 4 - Beta', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers', # Define that your audience are developers
'Topic :: Multimedia :: Graphics :: 3D Modeling',
'License :: OSI Approved :: Apache Software License', # Again, pick a license
'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3', #Specify which python versions that you want to support
],
)

0 comments on commit f5509c4

Please sign in to comment.