forked from jaguar754/instabot.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 loc) · 1.41 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
import os
from setuptools import setup, find_packages
try:
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.md")).read()
with open(os.path.join(here, "requirements/base.txt")) as f:
required = [l.strip('\n') for l in f if
l.strip('\n') and not l.startswith('#')]
except IOError:
required = []
README = ""
"""
Building python Wheels:
1 : python3 -m venv venv; .venv/bin/activate ; pip install --upgrade setuptools wheel
2 : python setup.py sdist bdist_wheel
3 : twine upload dist/*
"""
setup(
name="instabot-py",
packages=find_packages(),
version='0.2',
license='MIT',
description="Instagram python Bot",
long_description=README,
long_description_content_type="text/markdown",
author="Pasha Lev",
author_email="[email protected]",
url="https://github.com/instabot-py/instabot.py",
download_url='https://github.com/instabot-py/instabot.py/tarball/0.1',
keywords="instagram bot, Instagram API hack",
install_requires=required,
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',
],
)