forked from cognitivecomputations/github2file
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (41 loc) · 1.23 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
setup(
name='github2file',
version='0.1.0',
packages=find_packages(),
entry_points={
'console_scripts': [
'github2file = github2file.github2file:main'
]
},
install_requires=[
'requests',
'certifi==2024.2.2',
'charset-normalizer==3.3.2',
'idna==3.6',
'requests==2.31.0',
'tk==0.1.0',
'urllib3==2.2.1',
'tqdm',
'nbformat',
'nbconvert',
'pdfminer.six',
],
tests_require=['pytest'],
test_suite='pytest',
author='Your Name',
author_email='[email protected]',
description='A tool to download and process files from a GitHub repository',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/yourusername/github2file',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)