FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
patsy/setup.py at master · IBMZ-Linux-OSS-Python/patsy · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
IBMZ-Linux-OSS-Python
/
patsy
Public
forked from
pydata/patsy
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
patsy
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
52 lines (47 loc) · 1.6 KB
Breadcrumbs
patsy
/
setup.py
Copy path
File metadata and controls
52 lines (47 loc) · 1.6 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
from
setuptools
import
setup
DESC
=
(
"A Python package for describing statistical models and for "
"building design matrices."
)
LONG_DESC
=
open
(
"README.md"
).
read
()
# defines __version__
exec
(
open
(
"patsy/version.py"
).
read
())
setup
(
name
=
"patsy"
,
version
=
__version__
,
# noqa: F821
description
=
DESC
,
long_description
=
LONG_DESC
,
long_description_content_type
=
"text/markdown"
,
author
=
"Nathaniel J. Smith"
,
author_email
=
"njs@pobox.com"
,
license
=
"2-clause BSD"
,
packages
=
[
"patsy"
],
url
=
"https://github.com/pydata/patsy"
,
install_requires
=
[
# Possibly we need an even newer numpy than this, but we definitely
# need at least 1.4 for triu_indices
"numpy >= 1.4"
,
],
extras_require
=
{
"test"
: [
"pytest"
,
"pytest-cov"
,
"scipy"
],
},
python_requires
=
">=3.6"
,
classifiers
=
[
"Development Status :: 6 - Mature"
,
"Intended Audience :: Developers"
,
"Intended Audience :: Science/Research"
,
"Intended Audience :: Financial and Insurance Industry"
,
"License :: OSI Approved :: BSD License"
,
"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"
,
"Programming Language :: Python :: 3.11"
,
"Programming Language :: Python :: 3.12"
,
"Programming Language :: Python :: 3.13"
,
"Topic :: Scientific/Engineering"
,
],
)
Back
|
FazBrowse Home
|
New Git URL