File: setup.py

package info (click to toggle)
libcharon 5.0.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 576 kB
  • sloc: python: 1,575; sh: 388; makefile: 3
file content (14 lines) | stat: -rw-r--r-- 462 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright (c) 2018 Ultimaker B.V.	
# libCharon is released under the terms of the LGPLv3 or higher.	

from distutils.core import setup	

setup(	
    name = "Charon",	
    version = "1.0",	
    description = "Library to read and write file packages.",	
    author = "Ultimaker",	
    author_email = "plugins@ultimaker.com",
    url = "https://github.com/Ultimaker/libCharon",	
    packages = ["Charon", "Charon.Client", "Charon.Service", "Charon.filetypes"]	
)