-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
51 lines (45 loc) · 1.72 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import os.path
from setuptools import setup, find_packages
try:
import instabot
__version__ = instabot.__version__
except:
__version__ = "devel"
try:
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.md"), encoding="utf-8").read()
with open(os.path.join(here, "requirements/base.txt"), encoding="utf-8") as f:
required = [l.strip("\n") for l in f if l.strip("\n") and not l.startswith("#")]
except IOError:
required = []
README = ""
setup(
name="neo-instabot",
packages=find_packages(),
version=__version__,
python_requires=">3.6.1",
license="MIT",
description="Instagram Python Bot",
long_description=README,
long_description_content_type="text/markdown",
author="Amine Ben Asker",
author_email="[email protected]",
url="https://github.com/yurilaaziz/bot.py",
download_url="https://github.com/yurilaaziz/bot.py/tarball/master",
keywords="instagram bot, Instagram web API hack, automation tool.",
install_requires=required,
entry_points={"console_scripts": ["neo-instabot = instabot.__main__:main",
# Backwards Compatibility
"instabot-py = instabot.__main__:main"
]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)