@@ -76,54 +76,16 @@ def run_setup(binary: bool = True) -> None:
7676 logging .warning ("Building without binary support" )
7777
7878 setup (
79- name = "linearmodels" ,
80- license = "NCSA" ,
81- description = "Linear Panel, Instrumental Variable, Asset Pricing, and System "
82- "Regression models for Python" ,
8379 packages = ["linearmodels" ]
8480 + [f"linearmodels.{ v } " for v in find_namespace_packages ("linearmodels" )],
8581 package_dir = {"linearmodels" : "./linearmodels" },
86- author = "Kevin Sheppard" ,
87- 88- url = "http://github.com/bashtage/linearmodels" ,
8982 long_description = long_description ,
9083 long_description_content_type = "text/markdown" ,
9184 install_requires = open ("requirements.txt" ).read ().split ("\n " ),
9285 include_package_data = True ,
9386 package_data = {"linearmodels" : additional_files },
94- keywords = [
95- "linear models" ,
96- "regression" ,
97- "instrumental variables" ,
98- "IV" ,
99- "panel" ,
100- "fixed effects" ,
101- "clustered" ,
102- "heteroskedasticity" ,
103- "endogeneity" ,
104- "instruments" ,
105- "statistics" ,
106- "statistical inference" ,
107- "econometrics" ,
108- ],
10987 zip_safe = False ,
110- classifiers = [
111- "Development Status :: 5 - Production/Stable" ,
112- "Intended Audience :: End Users/Desktop" ,
113- "Intended Audience :: Financial and Insurance Industry" ,
114- "Intended Audience :: Science/Research" ,
115- "Programming Language :: Python :: 3.10" ,
116- "Programming Language :: Python :: 3.11" ,
117- "Programming Language :: Python :: 3.12" ,
118- "Programming Language :: Python :: 3.13" ,
119- "Operating System :: MacOS :: MacOS X" ,
120- "Operating System :: Microsoft :: Windows" ,
121- "Operating System :: POSIX" ,
122- "Programming Language :: Python" ,
123- "Topic :: Scientific/Engineering" ,
124- ],
12588 ext_modules = extensions ,
126- python_requires = ">=3.10" ,
12789 distclass = BinaryDistribution ,
12890 )
12991
0 commit comments