-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 946 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 946 Bytes
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
from setuptools import setup
setup(
name='python-gcs',
version='0.1.2',
url='https://github.com/Moneire/python-gcs',
author='Monere',
author_email='ilyastep03@gmail.com',
description='A simple Python module for interfacing with the GCS (https://armgs.team/) server.',
package_dir={
"": "src",
"gcs": "src/gcs",
"gcs.connector": "src/gcs/connector"
},
packages=['gcs', 'gcs.connector'],
install_requires=[
'requests >= 2.25.1',
'keyring >= 23.0.1'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'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',
],
)