-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 734 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 734 Bytes
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
from setuptools import setup, find_packages
setup(
version='1.0.0',
name='analysis',
url='https://github.com/occidere/leetcode',
description='LeetCode solve status analysis',
packages=find_packages(exclude=['tests', 'docs']),
package_data={'': ['resources/*.yaml']},
include_package_data=True,
python_requires='>=3.6',
zip_safe=False,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
],
install_requires=[
'PyYAML',
'requests',
'matplotlib',
'pytz',
]
)