-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (25 loc) · 1.01 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
from setuptools import setup, find_packages
# Function to read the requirements.txt file
def parse_requirements(filename):
with open(filename, 'r') as file:
return [line.strip() for line in file if line.strip() and not line.startswith('#')]
# Read the requirements from the requirements.txt file
requirements = parse_requirements('requirements.txt')
setup(
name='lawvision_data_analysis',
version='0.1.0',
description='Utility functions for the bail project.',
author='J. Stuart Leach, Jr.',
author_email='[email protected]',
url='https://github.com/stuartleach/lawvision_data_analysis', # Replace with your actual GitHub repo URL
packages=find_packages(),
install_requires=requirements,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: GNU for non-commercial use',
'Programming Language :: Python :: 3.8',
],
python_requires='>=3.8',
)