-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 827 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
32
33
34
35
"""
Personal website portfolio python package configuration.
"""
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='portfolio',
version='0.1.0',
packages=['porto'],
author="Thomas Dokas",
author_email="[email protected]",
url="https://github.com/dokastho/homepage",
description="A fresh take on what a homepage can do",
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
install_requires=[
'arrow',
'bs4',
'flask',
'autopep8',
'html5validator',
'pycodestyle',
'pydocstyle',
'pylint',
'pytest',
'requests',
'selenium',
],
python_requires='>=3.6',
)