-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (41 loc) · 1.2 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
43
44
from pathlib import Path
from setuptools import find_packages, setup
setup(
name="GitPyPi_3.12",
version="0.1.7",
packages=find_packages(),
install_requires=[
'pytest>=7.0.0',
'pytest',
'replit==4.1.0',
'black',
'flake8',
'build',
'requests',
'pyright',
'toml',
'pyyaml',
'isort',
'pyproject-flake8',
'zipfile38==0.0.3'
],
author="Joao Lopess",
author_email="[email protected]",
description="",
long_description=Path('README.md').read_text(),
long_description_content_type="text/markdown",
url="https://github.com/kairos-xx/GitPyPi_3.12",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Operating System :: OS Independent',
'Natural Language :: English',
'Typing :: Typed',
'Topic :: Software Development :: Libraries :: Python Modules'
],
python_requires=">=3.11",
)