-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
41 lines (39 loc) · 1.28 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
from setuptools import setup, find_packages
import os
# Attempt to read the README.md file for the long description
readme_path = 'README.md'
if os.path.exists(readme_path):
with open(readme_path, 'r') as fh:
long_description = fh.read()
else:
long_description = 'Long description not available.'
setup(
name='pregress',
version='1.0.2',
packages=find_packages(include=['pregress', 'pregress.*']),
install_requires=[
'matplotlib', 'pandas', 'numpy', 'statsmodels', 'seaborn', 'scikit-learn',
'scipy'
],
entry_points={
'console_scripts': [
# Define any command-line scripts here, if applicable
],
},
author="Daniel McGibney",
author_email="[email protected]",
description="Python Regression Analysis.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/danmcgib/pregress",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
include_package_data=True, # Ensures package data is included
package_data={
'pregress': ['data/*.csv'], # Reference the correct package name
},
)