-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
47 lines (44 loc) · 1.61 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
from setuptools import setup
from setuptools import find_packages
with open("README.md") as f:
LONG_DESCRIPTION = f.read()
MAJOR_VERSION = "0"
MINOR_VERSION = "0"
MICRO_VERSION = "21"
VERSION = "{}.{}.{}".format(MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION)
install_requires = ["lxml", "flask", "fire", "bs4", "just"]
setup(
name="nostalgia_chrome",
version=VERSION,
description="Self tracking your online life!",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/nostalgia-dev/nostalgia_chrome",
author="Pascal van Kooten",
install_requires=install_requires,
author_email="[email protected]",
license="MIT",
entry_points={"console_scripts": ["nostalgia_chrome = nostalgia_chrome.__main__:_main"]},
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
packages=find_packages(),
requires_python=">=3.4.0",
zip_safe=False,
platforms="any",
)