-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
49 lines (43 loc) · 1.11 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
# -*- coding: utf-8 -*-
"""Setup script."""
from setuptools import setup # type: ignore
with open("README.md", "r") as f:
long_description = f.read()
requires = [
"bs4",
"requests",
"tweepy",
"validators",
]
develop_requires = [
"wheel",
# "twine" to upload to pypi in secure way.
# See: https://packaging.python.org/tutorials/packaging-projects/
"twine",
"pytest",
"pytest-cov",
"wemake-python-styleguide",
"mypy",
]
setup(
name="logtweet",
version="0.1.5dev",
author="Tibor Leupold",
author_email="[email protected]",
description="Create a tweet based on a #100DaysOfCode log message",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/tbrlpld/logtweet",
python_requires=">=3.6",
install_requires=requires,
extras_require={
"develop": develop_requires,
},
packages=["logtweet"],
entry_points={
"console_scripts": [
"logtweet = logtweet.app:main",
],
},
include_package_data=True, # To copy the files listen in MANIFEST.in
)