Skip to content

Commit 18b44fe

Browse files
committed
setup file
1 parent 5fba72b commit 18b44fe

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

setup.py

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import setuptools
2+
3+
project_homepage = "https://github.com/harrypython/BurbnBot"
4+
5+
with open("README.md", "r") as fh:
6+
long_description = fh.read()
7+
8+
with open("requirements.txt") as f:
9+
dependencies = f.read().splitlines()
10+
11+
setuptools.setup(
12+
name='BurbnBot',
13+
version='1.0',
14+
packages=setuptools.find_packages(),
15+
url='https://github.com/harrypython/BurbnBot',
16+
license='GPL-3.0',
17+
author='Harry Python',
18+
author_email='[email protected]',
19+
description='BurbnBot is a bot for automated interaction in a famous social media app using a Android device '
20+
'or an Android Virtual Devices.',
21+
project_urls={
22+
"Example": (project_homepage + "/blob/master/example.py"),
23+
"Bug Reports": (project_homepage + "/issues"),
24+
"Buy me a coffee": "https://www.buymeacoffee.com/harrypython",
25+
},
26+
long_description=long_description,
27+
long_description_content_type="text/markdown",
28+
python_requires='>=3.7',
29+
install_requires=dependencies,
30+
)

0 commit comments

Comments
 (0)