-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (54 loc) · 1.92 KB
/
Copy pathsetup.py
File metadata and controls
57 lines (54 loc) · 1.92 KB
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
from setuptools import setup, find_packages
from os import path
import sys
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='apptracker',
version='0.1.0', # Updated version for new features
description='A modern cross-platform application tracker',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/manojpawarsj12/apptracker',
author='Manoj Pawar SJ',
author_email='manojpawarsj.mp11@gmail.com',
license="MIT",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
include_package_data=True,
keywords='application tracker digitalwellbeing website tracker productivity',
package_data={'apptracker': ['*.json']}, # Instead of data_files for better package compatibility
install_requires=[
'argparse',
'python-dateutil',
'plotext==5.3.2',
],
extras_require={
'windows': ['pywin32', 'uiautomation'],
'macos': ['pyobjc-framework-Cocoa'],
'linux': ['psutil'],
},
packages=find_packages(),
zip_safe=False,
project_urls={
'Bug Reports': 'https://github.com/manojpawarsj12/apptracker/issues',
'Source': 'https://github.com/manojpawarsj12/apptracker',
},
entry_points={
'console_scripts': [
'apptracker=apptracker.main:main',
],
},
)