-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 1.03 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
from setuptools import setup
setup(
name = "ft_apy",
version = "0.0.6",
description = "42api Library for Python3",
url = "https://github.com/taeng42/ft_apy.git",
author = "Hyundong",
author_email = "hyundong@42seoul.kr",
license = "mit",
#packages = find_packages(exclude = []),
install_requires = ["setuptools", "wheel", "urllib3"],
packages = ["ft_apy"],
zip_safe = False,
python_requires = '>=3',
classifiers = [
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)