Added entry point und setup.py
This commit is contained in:
		
							
								
								
									
										2
									
								
								carom/cli.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								carom/cli.py
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,2 @@
 | 
				
			|||||||
 | 
					def main():
 | 
				
			||||||
 | 
					    pass
 | 
				
			||||||
							
								
								
									
										15
									
								
								setup.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								setup.py
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,15 @@
 | 
				
			|||||||
 | 
					from setuptools import setup
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					setup(name='carom-client',
 | 
				
			||||||
 | 
					      version='0.1',
 | 
				
			||||||
 | 
					      description='Carom-Client new version',
 | 
				
			||||||
 | 
					      url='https://git.einsle.de/carom2/carom-client',
 | 
				
			||||||
 | 
					      author='Robert Einsle',
 | 
				
			||||||
 | 
					      author_email='robert@einsle.de',
 | 
				
			||||||
 | 
					      license='MIT',
 | 
				
			||||||
 | 
					      packages=['carom'],
 | 
				
			||||||
 | 
					      zip_safe=False,
 | 
				
			||||||
 | 
					      entry_points = {
 | 
				
			||||||
 | 
					        'console_scripts': ['carom-client=carom.cli:main'],
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
		Reference in New Issue
	
	Block a user