-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
24 lines (23 loc) · 861 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
from setuptools import setup, find_packages
setup(
name="igbloks",
version="1.0.0a",
packages=find_packages(include=["igbloks", "igbloks.*"]),
include_package_data=True,
author="novitae",
description="A library to work with instagram `bloks` technology", # Add a description
url="https://github.com/novitae/igbloks",
python_requires=">=3.9", # Specify your Python version requirements
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License", # Specify the license used
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
# Add or remove Python versions as needed
],
install_requires=[
"pyparsing",
],
)