forked from nostalgia-dev/nostalgia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
74 lines (71 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
from setuptools import find_packages
from setuptools import setup
with open("README.md") as f:
LONG_DESCRIPTION = f.read()
MAJOR_VERSION = "0"
MINOR_VERSION = "1"
MICRO_VERSION = "42"
VERSION = "{}.{}.{}".format(MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION)
setup(
name='nostalgia',
version=VERSION,
description="nostalgia enables to self-track and gain insights into your life",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url='https://github.com/nostalgia-dev/nostalgia',
author='Pascal van Kooten',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
include_package_data=True,
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Customer Service',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'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.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Debuggers',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Software Distribution',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
],
install_requires=[
"just",
"pandas",
"metadate",
"tok",
"ijson",
"cython",
"pyarrow",
"tldextract",
"diskcache",
"tzlocal",
# "lxml", # web_history
# "diskcache", # web_history
# "auto_extract", # web_history
# "ujson", # web_history
# "google-api-python-client", # offers
# "python-dotenv", # offers
# "natura", # offers
],
package_data={
# If any package contains *.txt or *.rst files, include them:
# '': ['*.txt', '*.rst'],
"nostalgia": ["**/*.parquet"]
},
zip_safe=False,
platforms='any',
)