mirror of
				https://github.com/RGBCube/GitHubWrapper
				synced 2025-10-31 14:02:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			No EOL
		
	
	
		
			574 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			No EOL
		
	
	
		
			574 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from setuptools import setup
 | |
| 
 | |
| with open('requirements.txt') as f:
 | |
|     requirements = f.read().splitlines()
 | |
| 
 | |
| version = '0.0.1'
 | |
| 
 | |
| packages = [
 | |
|     'Github',
 | |
| ]
 | |
| 
 | |
| readme = ''
 | |
| with open('README.md') as f:
 | |
|     readme = f.read()
 | |
| 
 | |
| setup(
 | |
|     name='GithubAPI',
 | |
|     author='VarMonke & sudosnok',
 | |
|     url='https://github.com/VarMonke/Github-Api-Wrapper',
 | |
|     version=version,
 | |
|     packages=packages,
 | |
|     license='MIT',
 | |
|     description='An asynchronous python wrapper around the GitHub API',
 | |
|     long_description=readme,
 | |
|     install_requires=requirements,
 | |
|     python_requires='>=3.10.0',
 | |
| ) | 
