-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 847 Bytes
/
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
from setuptools import find_packages, setup
package_name = "square_commons"
setup(
name=package_name,
version="1.4.1",
packages=find_packages(),
install_requires=[
"configparser>=6.0.0",
"requests>=2.32.3",
],
extras_require={},
author="thePmSquare",
author_email="thepmsquare@gmail.com",
description="helper module containing common functions for all my python modules.",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url=f"https://github.com/thepmsquare/{package_name}",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
],
)