-
Notifications
You must be signed in to change notification settings - Fork 65
/
setup.py
31 lines (27 loc) · 856 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
28
29
30
31
import os
from io import open
from setuptools import setup
install_requires = ['webdriver_manager', 'selenium']
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
base_dir = os.path.dirname(__file__)
setup(
name="instadm",
version='0.0.2',
author="Toche Camille",
author_email="[email protected]",
url="https://github.com/CamTosh/instagram-bot-dm",
description="Instagram bot to send direct messages",
long_description=long_description,
long_description_content_type="text/markdown",
py_modules=["instadm"],
zip_safe=False,
license="GPLv3",
install_requires=install_requires,
include_package_data=True,
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development",
],
)