-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 822 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 822 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
29
30
31
32
33
#!/usr/bin/env python3
from pathlib import Path
from setuptools import setup, find_packages
directory = Path(__file__).resolve().parent
with open(directory / 'README.md', encoding='utf-8') as f:
long_description = f.read()
with open(directory / 'requirements.txt', encoding='utf-8') as f:
requirements = f.read().splitlines()
setup(
name='claudeslens',
version='0.0.1',
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
],
install_requires=requirements,
python_requires='>=3.8',
extras_require={
'testing': [
"pytest",
"tabulate",
"mock",
]
},
include_package_data=True
)